<!-- Begin
function ShowPhoto(img,title){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img,title);
}
function Controlla(img,title){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img,title);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img,title){
  largh=foto1.width;
  altez=foto1.height;
  stringa="width="+largh+",height="+altez;
  clrWindow=window.open("Zdjêcie","iMAGE",stringa);
  clrWindow.document.open ("text/html");
  //clrWindow.document.write("<HTML><BODY BGCOLOR=\"#EAC92F\"><DIV ALIGN=center>"+txt+"<BR><BR><IMG SRC="+img+"></CENTER></BODY></HTML>");
  clrWindow.document.write("<HTML><HEAD><LINK HREF=\"inc/style.css\" TYPE=\"text/css\" REL=\"stylesheet\"><TITLE>"+title+"</TITLE></HEAD>");
  clrWindow.document.write("<BODY BGCOLOR=\"#FFFFFF\" onBlur='self.close()' style=\"padding:0; margin:0;\"><DIV ALIGN=\"left\" style=\"padding:0; margin:0;\">");
  //clrWindow.document.write("<b>wymiary: "+foto1.width+" x "+foto1.height+"</b><br><br>");

  clrWindow.document.write("<A HREF=\"#\" onClick=\"javascript:window.close()\"><IMG SRC='"+img+"' BORDER=\"0\"  style=\"padding:0; margin:0;\"></A></CENTER></BODY></HTML>");
  clrWindow.document.close();
}
function ShowSWF(img,wid,hei,title)
{
  key = 1;
  stringa="width="+(wid)+",height="+(hei);
  clsWindow=window.open("blank.html","swf",stringa);
  clsWindow.document.open ("text/html");
  clsWindow.document.write("<HTML><HEAD><LINK HREF=\"inc/style.css\" TYPE=\"text/css\" REL=\"stylesheet\"><TITLE>"+title+"</TITLE></HEAD>");
  clsWindow.document.write("<BODY BGCOLOR=\"#ffffff\" style=\"padding:0; margin: 0;\" onLoad='self.focus()'><DIV ALIGN=\"left\" style=\"margin:0; padding: 0;\">");
  //clrWindow.document.write("<b>wymiary: "+wid+" x "+hei+"</b><br><br>");
  
  clsWindow.document.write("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" WIDTH=\""+wid+"\" HEIGHT=\""+hei+"\" id=\"swfmap\" ALIGN=\"\" style=\"margin:0; padding:0;\">");
  clsWindow.document.write("<PARAM NAME=movie VALUE=\""+img+"\"><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#CCCCCC><EMBED src=\""+img+"\" quality=high bgcolor=#CCCCCC WIDTH=\""+wid+"\" HEIGHT=\""+hei+"\" NAME=\"swfmap\" ALIGN=\"\" TYPE=\"application/x-shockwave-flash\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\"></EMBED></OBJECT>");
  clsWindow.document.write("</CENTER></BODY></HTML>");
  clsWindow.document.close();

}
//  End -->

