questa?
ma come posso bypassare i pop up killer come la googlebar?
nulla?
grazie
Codice PHP:
<script>
/* Scritto da Br1 e ottimizzato da Mackey */
function screenFull() {
if (document.all) {
var sW=screen.width;
var sH=screen.height;
window.moveTo(0,0);
window.resizeTo(sW,sH);
var gT=window.screenTop;
var gL=window.screenLeft;
var gR= sW - gL - document.body.offsetWidth;
var gB= sH - gT - document.body.offsetHeight;
window.moveTo(-gL,-gT);
window.resizeTo(sW+gL+gR,sH+gT+gB);
}
else if(self.name!="start") {
var start = window.open(this.location.href,"start","fullscreen=1");
window.close();
}
}
window.onload = screenFull;
</script>