var openDesignBspWindow = null;
var openURLWindow= null;

function doopenURLWindow(url)
{
  if (openURLWindow&& !openURLWindow.closed)
  {
    openURLWindow.close();
  }
  openURLWindow= window.open(url,'openURLWindow',features+','+properties,'');
  openURLWindow.focus();
}



function doopenDesignBspWindow(firmen_typ,features)
{
  if (openDesignBspWindow && !openDesignBspWindow.closed)
  {
    openDesignBspWindow.close();
  }
  // Die Position des Fensters wird über die Auflösung 
  // des Bildschirm ermittelt - daraus berechnet sich dann
  // die XY-Position der linken oberen Ecke.
//  properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no,";
  properties = "toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,copyhistory=no";
//  openAGBWindow = window.open('','openAGBWindow','top=0,left=0,width=640,height=480,'+properties,'');
  openDesignBspWindow= window.open('','openDesignBspWindow',features+','+properties,'');
  openDesignBspWindow.document.open();
  openDesignBspWindow.document.write('<!doctype html public "-//w3c//dtd html 4.0 transitional//en"><html><head>');
  openDesignBspWindow.document.write('<script language="JavaScript">if (window.focus) { window.focus(); }</script>');
  openDesignBspWindow.document.write('</head><body text="#333333" bgcolor="#FFFFFF" link="#333333" vlink="#333333" alink="#333333" background="images/yelbalk.gif"><center><!></center>');
  openDesignBspWindow.document.write('<center><table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="600" BGCOLOR="#FFFFFF" ><tr><td COLSPAN="3" WIDTH="3%">&nbsp;</td><td WIDTH="93%">');
  openDesignBspWindow.document.write('<center><img SRC="images/transparent.gif" height=15 width=15></center><table BORDER CELLSPACING=0 CELLPADDING=4 WIDTH="100%" BACKGROUND="images2/blueback.gif" ><tr><td ALIGN=CENTER COLSPAN="6"><font face="Arial,Helvetica"><font color="#FFFFFF"><font size=-1>Referenzliste zu Internetauftritten f&uuml;r</font></font></font><br><b><font face="Arial,Helvetica"><font color="#FFFFFF"><font size=+1>');
  openDesignBspWindow.document.write(typ_bez_arr[firmen_typ]);
  openDesignBspWindow.document.write('</font></font></font></b></td></tr></table><center><img SRC="images/transparent.gif" height=15 width=17></center><center><table BORDER CELLSPACING=0 CELLPADDING=0 WIDTH="100%" BGCOLOR="#ECECE6" ><tr><td><center><table BORDER=0 CELLSPACING=0 CELLPADDING=5 WIDTH="95%" ><tr><td ALIGN=LEFT VALIGN=TOP></td><td ALIGN=LEFT VALIGN=BOTTOM><img SRC="images/transparent.gif" height=5 width=70></td><td VALIGN=TOP><img SRC="images/transparent.gif" height=5 width=260></td></tr>');

  for (i=1; i<=firmen_anzahl; i++) {
    if (firmen_typ_arr[i] == firmen_typ) {

  openDesignBspWindow.document.write('<tr><td VALIGN=TOP><center>');
//  openDesignBspWindow.document.write('<a href="http://'+firmenurl_arr[i]+'" target="portofolio-'+firmenname_arr[i]+'">');
  openDesignBspWindow.document.write('<a href="javascript:;" onclick=javascript:window.open("http://'+firmenurl_arr[i]+'");>');
  openDesignBspWindow.document.write('<img SRC="images/'+firmenscreen_arr[i]+'" ALT="Startseite - '+firmenname_arr[i]+'" BORDER=1 height=110 width=152>');
  openDesignBspWindow.document.write('</a></center></td><td></td><td VALIGN=TOP><b><font face="Arial,Helvetica"><font size=-1>');
  openDesignBspWindow.document.write(firmenname_arr[i]);
  openDesignBspWindow.document.write('</font></font></b><br><font face="Arial,Helvetica"><font size=-1>');
  openDesignBspWindow.document.write(firmenbez_arr[i]);
  openDesignBspWindow.document.write('</font></font><p><font face="Arial,Helvetica"><font size=-2>');
  openDesignBspWindow.document.write('[ '+umsetzungpflege_arr[i]+' ]');
  openDesignBspWindow.document.write('</font></font><p><font face="Arial,Helvetica"><font size=-2>');
//  openDesignBspWindow.document.write('<a href="http://'+firmenurl_arr[i]+'" target="portofolio-'+firmenname_arr[i]+'">'+firmenurl_arr[i]+'</a><p><font face="Arial,Helvetica"><font size=-2>'+bemerkung_arr[i]+'</font></font>');
  openDesignBspWindow.document.write('<a href="javascript:;" onclick=javascript:window.open("http://'+firmenurl_arr[i]+'");>'+firmenurl_arr[i]+'</a><p><font face="Arial,Helvetica"><font size=-2>'+bemerkung_arr[i]+'</font></font>');
  openDesignBspWindow.document.write('</font></font></td></tr><tr><td COLSPAN="3"><hr ALIGN=LEFT SIZE=1 WIDTH="100%"></td></tr>');

    }
  }

  openDesignBspWindow.document.write('</table></center><center><font size=-1>&nbsp;</font></center></td></tr></table></center><center><img SRC="images/transparent.gif" height=15 width=15></center></td><td WIDTH="4%">&nbsp;</td></tr></table></center><center><!></center>');
  openDesignBspWindow.document.write('<center><table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="600" ><tr><td><font face="Arial,Helvetica"><font size=-2>Copyright &copy; Soft<font color="#CC0000">AiX</font>. Alle Rechte vorbehalten.</font></font></td></tr></table></center></body></html>');
  openDesignBspWindow.document.close();
  openDesignBspWindow.focus();
}

