function pop_fullscreen(url, scrollo) {
    var larg_schermo = screen.availWidth - 10;
    var altez_schermo = screen.availHeight - 30;
    window.open(url, "WindowName", "width=" + larg_schermo + ",height=" + altez_schermo + ",top=0,left=0,scrollbars=" + scrollo + "");
}



function openFullscreen(url,name,scrollo){
	var h=window.screen.availHeight;
	var w=window.screen.availWidth;
	newWin = window.open(url,name,"scrollbars=0,resizable=0,location=0,status=1,height="+h+",width="+w+ ",scrollbars=" + scrollo + "");
	//newWin.resizeBy(-10,-40);
	newWin.moveTo(0,0);
	//resizeTo(w, h);
	} 
