  function bluepearl(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,0);
  }
}
function viewFoto(img){
  largh=foto1.width+20+70;
  altez=foto1.height+20+70;
stringa="width="+largh+",height="+altez;

 

NewWindow=window.open("","",stringa+"screenx=200,screeny=50,top=0,left=150,scrollbars=yes,resizable=yes");


        NewWindow.document.write ("<html><head><title>sy-bluepearl.com");
        NewWindow.document.write ("</title></head>");
        NewWindow.document.write ("<body bgcolor='#000000' onload='focus()'>");
        NewWindow.document.write ("<table align='center'><tr>");
        NewWindow.document.write ("<td align='center' valign='top'>");
        NewWindow.document.write ("<table border='1' bgcolor='#000000' cellpadding='0' cellspacing='1'><tr><td align='center'>");
        NewWindow.document.write ("<img src=");
        NewWindow.document.write (img);
        NewWindow.document.write (">");
        NewWindow.document.write ("</tr></table>");
        NewWindow.document.write ("</td></tr><tr>");
        NewWindow.document.write ("<td align='center' valign='bottom'>");
        NewWindow.document.write ("<br><center><form><input type='button' value='FENSTER SCHLIESSEN' style='font-family: Verdana; font-size: 10px' onClick='self.close()'>");
        NewWindow.document.write ("</td></tr></table>");
        NewWindow.document.write ("</form></body></html>");
        NewWindow.document.close();
     

  


}
 
  
 
