// JavaScript - Internet Komputery Sieci - www.ix.pl
var okno = null;
 
function OtworzOkno(zdjecie,x,y) 
{
   var winl = (screen.width - (x+20)) / 2;
   var wint = (screen.height - (y+20)) / 2;
   
   if (okno && okno.open && !okno.closed) { okno.close(); };

   okno=window.open('','okno','width='+(x+20)+', height='+(y+20)+', top='+wint+',left='+winl+', screenY='+wint+', screenX='+winl+'  ');
   okno.document.open("text/html", "replace");
   okno.document.writeln('<HTML><HEAD>');
   okno.document.writeln('<META HTTP-EQUIV="Content-Type" content="text/html; charset=ISO-8859-2"><TITLE>ZSB- Zespół Szkół Budowlanych w Bydgoszczy</TITLE></HEAD>');
   okno.document.writeln('<BODY MARGINWIDTH=10 MARGINHEIGHT=10 onClick="javascript:window.close();">');
   okno.document.writeln('<TABLE WIDTH='+x+' HEIGHT='+y+' BORDER=0 CELLSPACING=0 CELLPADDING=0 ALIGN="center">');
   okno.document.writeln('<TR><TD WIDTH='+x+' HEIGHT='+y+' ALIGN="center" VALIGN="center">');
   okno.document.writeln('<IMG SRC="'+zdjecie+'" WIDTH='+x+' HEIGHT='+y+' STYLE="border-style: solid; border-left: 1px solid #999999; border-top: 1px solid #999999; border-right: 1px solid #999999; border-bottom: 1px solid #999999;">');
   okno.document.writeln('</TD></TR>');
   okno.document.writeln('</TABLE>');
   okno.document.writeln('</BODY></HTML>');
  
   if (parseInt(navigator.appVersion) >= 4) { okno.window.focus(); };
   okno.document.close();
}

