// cambia lo stile utilizzato per centrare verticalmente la homepage
// a seconda della risoluzione video attiva
// passando i parametri
function adjustClassObject(container, low_resolution, high_resolution)
{
	if (screen.height <= 768) 
		document.getElementById(container).className = low_resolution;
	else 
		document.getElementById(container).className = high_resolution; 
}


function activateFlash(small_obj, big_obj){
	if (screen.height <= 800){
		document.getElementById(small_obj).style.display = 'table';
		document.getElementById("tb_time_down").style.width = "100%";
	}
	else{
		document.getElementById(big_obj).style.display = 'table';
		document.getElementById("tb_time_down").style.width = "100%";
	}
		
	
}


function popupMail(){
	if(document.form_popup.check.value == '')
		window.open("./come.php", "Come", "height=500,width=800,resizable=no,status=no,toolbar=no,menubar=no,location=no");	
	
}



function closePopupMail(){
	window.opener.document.location.href = './mail.php';
	window.close();
}