// JavaScript Document

function PopupCentrata(pag,w,h) {
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open(pag,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l + ", scrollbars=1");
}
 
function PopupInvita(pag,w,h) {
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open(pag+"?mailamico="+ document.getElementById('mailamico').value,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l);
} 
 		
function changecity(obj,opt,lng)
	{
		city = "citta";
		if(lng == "/en")
			city = "city";
		if(obj.options[obj.selectedIndex].value != "")
			if(opt == 1)
				window.location.href = '/'+lng+'/' + obj.options[obj.selectedIndex].value;	
			else
				window.location.href = lng+'/' + obj.options[obj.selectedIndex].value+'-'+city;
}
function PopupAdv(pag,w,h) {
   var l = Math.floor((screen.width-w)/2);
   var t = Math.floor((screen.height-h)/2);
      window.open(pag,"","width=" + w + ",height=" + h + ",top=" + t + ",left=" + l + ",scrollbars=1");
}
