function openMain(strurl) {
	grandezza=screen.width-10;
	altezza=screen.height-56;
	//settaggio='top=0,left=0,statusbar,height='+altezza+', width='+grandezza;
	settaggio='fullscreen,scrollbars';
 	newWin = window.open(strurl, 'Mascheroni', settaggio);
	newWin.moveTo(0,0);
	newWin.focus();
}
function chiudi(){
	window.parent.close();
}
function openpop(strurl,strW,strH,strScroll) {
	if (strW == "" || strH =="" ){
		StrParam = "" ;
	} else {
		StrParam = "width="+strW+",height="+strH+",scrollbars=no,toolbar=no";
	}
	if (strScroll == ""){
		StrParam = StrParam+",toollbar=no" ;
	} else {
		StrParam = "width="+strW+",height="+strH+",scrollbars="+strScroll+",toolbar=no";
	}
	
	window.open(strurl, '', StrParam);		
}
