

function FOTO(img){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img);
}
function Controlla(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}

function viewFoto(img){
  largh=foto1.width;
  altez=foto1.height;
  stringa="width="+largh+",height="+altez;
  
noweOkno=window.open('','',stringa);

noweOkno.document.open();
noweOkno.document.clear();
noweOkno.document.write(
"<html><head>\n"
+"<META HTTP-EQUIV='content-type' CONTENT='text/html; CHARSET=iso-8859-2'>\n"
+"<title>ZIELENIEC.INFO</title>\n"
+"</head>\n"
+"<body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0 bgcolor=#FFFFFF>\n"
+"<p align='center'><img src=" + img + " usemap='#Map' border='0'></p>\n"
+"<map name='Map'><area shape='rect' coords='137,157,171,179' target='_blank'>\n"
+"</body>\n"
+"</html>"
);
noweOkno.document.close();
noweOkno.focus();
}

