﻿/****************************************************************
*   Funzioni utente modificabili                                *
****************************************************************/
//
// funzioni per l'apertura di popUp
function popUp(){
	w = 580;
	h = screen.height;
	LeftPosition = 0;//(screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = 0;//(screen.height) ? (screen.height-h)/2 : 0;
	settings = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+w+',height='+h+',left='+LeftPosition+', top='+TopPosition+',screenX='+LeftPosition+',screenY='+TopPosition+'';
	win = window.open('normativa.html','normativa',settings)
}




//apertura PopUp a tutto schermo
function openFullWindow(lang) {
	var w = screen.width;
	var h = screen.height;

	LeftPosition = 0;
	TopPosition = 0;
	
	if (h<800)
	{
		var windowprops = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+w+',height='+h+',left='+LeftPosition+', top='+TopPosition+',screenX='+LeftPosition+',screenY='+TopPosition+'';
	} else
	{
		var windowprops = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+w+',height='+h+',left='+LeftPosition+', top='+TopPosition+',screenX='+LeftPosition+',screenY='+TopPosition+'';
	}
	
	var ammpesarocom = window.open('default.aspx?lang='+lang,'ammpesarocom',windowprops);
	ammpesarocom.moveTo(LeftPosition,TopPosition)
	ammpesarocom.resizeTo(w,h);
	ammpesarocom.focus();
}