// JavaScript Document
var viewWindow=0;
function view(title,imgpath,width,height)
{
  if(viewWindow)
  {
    if(!viewWindow.closed) viewWindow.close();
  }
  var imgbase="/immagini/"
  var part1="<html><head><title>" // title
  var part2="</title><body bgcolor='#FFFFFF'><a href='javascript:window.close()'><img src='" // img path
  var part3="' border=0 alt='" // img alt
  var part4="' width="+width+" height="+height+"></a></body></html>"
  viewWindow=open('about:blank','viewWindow','dependent,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=yes,width='+(width+20)+',height='+(height+20));
  viewWindow.document.open("text/html","replace")
  viewWindow.document.write(part1+title+part2+imgbase+imgpath+part3+title+part4)
  viewWindow.document.close()
}

