// 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+170)) / 2;
   
   if (okno && okno.open && !okno.closed) { okno.close(); };

   okno=window.open('','okno','width='+(x+20)+', height='+(y+170)+', top='+wint+',left='+winl+', screenY='+wint+', screenX='+winl+'  ');
   okno.document.open("text/html", "replace");
   okno.document.writeln('<HTML><HEAD><LINK REL="stylesheet" HREF="font.css" TYPE="text/css">');
   okno.document.writeln('<META HTTP-EQUIV="Content-Type" content="text/html; charset=ISO-8859-2"><TITLE>Sigma Catering - galeria</TITLE></HEAD>');
   okno.document.writeln('<BODY BGCOLOR="#000000" TOPMARGIN=0 MARGINHEIGHT=0 LEFTMARGIN=0 MARGINWIDTH=0 onClick="javascript:window.close();">');
   okno.document.writeln('<TABLE WIDTH='+x+' HEIGHT='+(y+140)+' BORDER=0 CELLSPACING=10 CELLPADDING=0 ALIGN="center">');
   okno.document.writeln('<TR><TD WIDTH='+x+' HEIGHT=140 ALIGN="center" VALIGN="center">');
   okno.document.writeln('<IMG SRC="images/logo.gif" WIDTH=395 HEIGHT=140><BR>');
   okno.document.writeln('</TD></TR>');
   okno.document.writeln('<TR><TD WIDTH='+x+' HEIGHT='+y+' ALIGN="center" VALIGN="center">');
   okno.document.writeln('<IMG SRC="'+zdjecie+'" WIDTH='+x+' HEIGHT='+y+' CLASS="obrazek">');
   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();
}

function OtworzOknoCasa(zdjecie) 
{
   var winl = (screen.width - 620) / 2;
   var wint = (screen.height - 570) / 2;
   
   if (okno && okno.open && !okno.closed) { okno.close(); };

   okno=window.open('','okno','width=620, height=580, top='+wint+',left='+winl+', screenY='+wint+', screenX='+winl+'  ');
   okno.document.open("text/html", "replace");
   okno.document.writeln('<HTML><HEAD><LINK REL="stylesheet" HREF="font.css" TYPE="text/css">');
   okno.document.writeln('<META HTTP-EQUIV="Content-Type" content="text/html; charset=ISO-8859-2"><TITLE>CasaBlanca - lokal, restauracja, cafe &amp; bar</TITLE></HEAD>');
   okno.document.writeln('<BODY BGCOLOR="#FCF4E0" TOPMARGIN=0 MARGINHEIGHT=0 LEFTMARGIN=0 MARGINWIDTH=0 onClick="javascript:window.close();">');
   okno.document.writeln('<TABLE WIDTH=600 BORDER=0 CELLSPACING=10 CELLPADDING=0 ALIGN="center">');
   okno.document.writeln('<TR><TD WIDTH=600 HEIGHT=149 ALIGN="center" VALIGN="center">');
   okno.document.writeln('<IMG SRC="images/casablanca.gif" WIDTH=600 HEIGHT=149><BR>');
   okno.document.writeln('</TD></TR>');
   okno.document.writeln('<TR><TD WIDTH=600 HEIGHT=401 ALIGN="center" VALIGN="center">');
   okno.document.writeln('<IMG SRC="'+zdjecie+'" WIDTH=600 HEIGHT=401 CLASS="obrazek">');
   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();
}

//obsługa obiektów ActiveX, które wymagają uruchomienia np. Flash
var bo_ns_id = 0;


function startIeFix() 
{
    document.write('<div id="bo_ns_id_' + bo_ns_id + '"><!-- ');
}

function endIeFix() 
{
    document.write('</div>');
    var theObject = document.getElementById("bo_ns_id_" + bo_ns_id++);
    var theCode = theObject.innerHTML;
    theCode = theCode.substring(4 ,9+theCode.indexOf("</object>"));
    document.write(theCode);
}
