var inter;
function fullscreenPop(pagina) {
        var s = "newwindow = window.open(pagina, 'newpage','screenX=0,left=0,screenY=0,top=0,width=" + (screen.width-10) + ",height=" + (screen.height-60) + ",menubar=no,resizable=no,titlebar=no,location=no,alwaysRaised=yes,status=no,scrollbars=yes,fullscreen=0');";
        eval(s);
		if (!newwindow) disablepopup()
        if (navigator.appName.indexOf('Netscape') > -1) {
           setTimeout('newwindow.focus()',40);
		   
        } else {
          newwindow.focus();
        }
}
function putscroll(){
	document.body.style.height = "700px";
	document.getElementById("index").style.height;
}
function disablepopup(){
	alert("The page cannot be opened in the popup, please disable the popup blocker and try again!");
}
