
function ApriImmagineNew(imgname,larghezza,altezza,titolo)
{
	     var msg
         parametri="toolbar=no,directories=no,menubar=no,width=" + larghezza + ",height=" + altezza + ",resizable=no";
         msg=open("","_blank",parametri);
        msg.document.write ("<html><title>");
        msg.document.write (titolo);
        msg.document.write ("</title><body topmargin='0' leftmargin='0'>");
         msg.document.write ("<table border='0' width='100%' height='100%' cellspacing='0' cellpadding='0'>");
         msg.document.write ("<tr><td valign='top' align='center'>");
         msg.document.write ("<img src='" + imgname + "'>"); 
         msg.document.write ("</td></tr></table>");
         msg.document.write ("</body></html>");
      	 msg.document.close;
}

