<!--
function simpleDialog(img,name){
  foto1=new Image();
  foto1.src=(img);
  Controlla(img,name);
}
function Controlla(img,name){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"','"+name+"')";
    intervallo=setTimeout(funzione,5);
  }
}
function viewFoto(img, name){
 thewidth=foto1.width+60;
 theheight=foto1.height+60;
 features = 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + thewidth + ',height=' + theheight ;
 dlg = window.open ("blank.html","Dialog",features);
 dlg.document.write('<html>');
 dlg.document.write('<head>');
 dlg.document.write('<title>Diamond Design Co. - Original by J</title>');
 dlg.document.write('</head>');
 dlg.document.write('<body bgcolor=#FFFFFF leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');
 dlg.document.write('<table width=100% border=0 cellspacing=0 cellpadding=0>');
 dlg.document.write('<tr>');
 dlg.document.write('<td align=center>');
 dlg.document.write('<BR><img src=' + img + '>');
 dlg.document.write('</td></tr>');
 dlg.document.write('<tr><td align=center valign=top><a href=# onClick=window.close();><img src="/lib/originalbyj/close.gif" border=0></a></td>');
 dlg.document.write('</tr>');
 dlg.document.write('</table>');
 dlg.document.write('</body>');
 dlg.document.write('</html>');
}
//-->


