openBox="";
function checkResolution()	{
	if( typeof( window.innerWidth ) == 'number' )	{
		//Non-IE
		w_ = window.innerWidth;
		h_ = window.innerHeight;
	} 
	else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) )	{
		//IE 6+ in 'standards compliant mode'
		w_ = document.documentElement.clientWidth;
		h_ = document.documentElement.clientHeight;
	} 
	else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) )	{
		//IE  compatible
		w_ = document.body.clientWidth;
		h_ = document.body.clientHeight;
	}
	
	if(w_<968 && openBox=="")	{
		tb_show('Risoluzione non supportata','/common/html/no_resolution.html?KeepThis=true&TB_iframe=true&modal=true&height=200&width=300',null);
		openBox=true;
	}else if(w_>=968 && openBox==true)	{
		tb_remove();
		openBox="";					
	}
		
	$.ajax({
		type: "GET",
		url: "/common/php/ip_search.php",
		contentType: "application/json; charset=utf-8",		   
		dataType: "json",
		async: true,
		success: function() {   
		}, 
		error: function()	{
			alert('Non è stato possibile inviare i dati. Riprova più tardi.')
		}
	});
}

function apriMail(mitt,mailMitt,ogg){
	var e_add= mitt + '<' + mailMitt + '>';
	var subj= ogg;
	window.location="mailto:"+e_add+"?subject="+subj;	
}