<script language="javascript">
function screenFull() {
// (c) br1 - 2001
if (document.all) {
// misuro lo schermo
sW=screen.width;
sH=screen.height;
// porto la finestra a 0,0 e misuro bordi
window.moveTo(0,0);
gL=window.screenLeft+2;
gT=window.screenTop+2;
// altre cose da eliminare...
gR=22; // scrollbar a destra
gB=49; // scrollbar sotto e status
// sorpresa!
window.moveTo(-gL,-gT);
window.resizeTo(sW+gL+gR,sH+gT+gB);
}
}
function stopfull() {
window.moveTo(0,0);
window.resizeTo(screen.availWidth,screen.availHeig ht);
}
</script>
<frameset rows="531,84" cols="*" framespacing="0" frameborder="no" border="0" onload="screenFull()">
<frame src="main.htm" name="mainFrame">
<frame src="sotto.htm" name="bottomFrame" scrolling="NO">
</frameset>