<!-- Pop-up immagini
function display(thisImage) {
 html = "<html><head><title>L'Orologio Residence</title>" +
  "</head><body leftmargin=0 " +
  "marginwidth=0 topmargin=0 marginheight=0 onblur=self.close()>" +
  "<table width='100%' align='center'  border='0' cellspacing='0' cellpadding='0'><tr><td width='65%' bgcolor='#FFFFFF' height='14px' align='center'><span style='font-size: 10px; color: #000000;'><strong>L'OROLOGIO RESIDENCE<strong></span></td>" +
"<td width='35%' height='14px' bgcolor='#AF1010' align='center'><a href='javascript:top.window.close()' style='font-size: 10px; color: #000000;'>Chiudi</a></td></tr><tr><td colspan='2' align='center'><img src='" + thisImage + "' border=0 name=image " +
  "onload='window.resizeTo(document.image.width+12,document.image.height+44);moveTo(screen.width/2-320,screen.height/2-320)'></td></tr></table>" +
  "</body></html>";
 popup=window.open
   ('','image','width=640,height=480','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
 popup.document.open();
 popup.document.write(html);
 popup.document.focus();
 popup.document.close()
 };
-->
