salve a tutti. ho un problema con firefox. ho implementato del codice per dimensionare una pagine ma mentre con IE funziona correttamente, con fix la pagina nemmeno si vede, potete aiutarmi? ecco il codice inserito:
<script language="JavaScript">
<!--
function Resize(myheight,mywidth) {
var sizeh=myheight; //new width
var sizew=mywidth; //newhieight
window.resizeTo(sizew,sizeh); //resize it
window.moveTo(((screen.width/2)-(sizew/2)),((screen.height/2)-(sizeh/2))); //reposition it
}
//-->
</script>
</head>
<body text="#000000" onLoad="Resize(800,1200)">
grazie