Stessa risposta. Ecco la pagina. Funziona con IE6 e NN7
codice:
<%@ Language=VBScript %>
<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
</HEAD>
<BODY>
[img]img/testLITE.jpg[/img]
[img]img/testLITE2.jpg[/img]
[img]img/testLITE2.jpg[/img]
</BODY>
</HTML>
<SCRIPT LANGUAGE=javascript>
<!--
var newWindow = null;
function openPictureWindow_Fever(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop)
{ // v4.01
if (newWindow != null && newWindow.open) newWindow.close();
newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
newWindow.document.open();
newWindow.document.write('<html><head><title>'+alt+'</title></head><body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
newWindow.document.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\">');
newWindow.document.write('</body></html>');
newWindow.document.close();
newWindow.focus();
}
//-->
</SCRIPT>