function aprifinestra2(NomeFile,NomeFinestra,Caratteristiche)
{
  var Pagina;
  var Contenuto ="<html>\n<head>\n<META HTTP-EQUIV=\"imagetoolbar\" CONTENT=\"no\">\n<title>" + NomeFinestra + "</title>\n</head>\n<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' >\n";
  Contenuto += "<script language=\"JavaScript1.2\"> function right(e) { if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) return false; else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) { alert(\"Il tasto destro del mouse è disabilitato\"); return false; } return true; } document.onmousedown=right; if (document.layers) window.captureEvents(Event.MOUSEDOWN); window.onmousedown=right; </script>";
  Contenuto +="<img src='"+ NomeFile + "'> </body></html>";
  Pagina=window.open('','',Caratteristiche); 
  Pagina.document.write(Contenuto);
  Pagina.document.close();  
}