function newWindow(a_str_windowURL, a_str_windowName, a_int_windowWidth, a_int_windowHeight, a_bool_scrollbars, a_bool_resizable, a_bool_menubar, a_bool_toolbar, a_bool_addressbar, a_bool_statusbar, a_bool_fullscreen) {
  var int_windowLeft = (screen.width - a_int_windowWidth) / 2;
  var int_windowTop = (screen.height - a_int_windowHeight) / 2;
  var str_windowProperties = 'height=' + a_int_windowHeight + ',width=' + a_int_windowWidth + ',top=' + int_windowTop + ',left=' + int_windowLeft + ',scrollbars=' + a_bool_scrollbars + ',resizable=' + a_bool_resizable + ',menubar=' + a_bool_menubar + ',toolbar=' + a_bool_toolbar + ',location=' + a_bool_addressbar + ',statusbar=' + a_bool_statusbar + ',fullscreen=' + a_bool_fullscreen + '';
  var obj_window = window.open(a_str_windowURL, a_str_windowName, str_windowProperties)
    if (parseInt(navigator.appVersion) >= 4) {
      obj_window.window.focus();
    }
}


function check_send(){
	
	//send_to_friend = document.getElementById('send_to_friend');
	
	//send_to_friend = document.forms["send_to_friend"]["month"].value;
	
	
	if (checkYourEmail(document.forms["send_to_friend"]["yourmail"])){
		
		if (checkFrindEmail(document.forms["send_to_friend"]["mailto"])){
		
			yourmail = document.forms["send_to_friend"]["yourmail"].value;
			mailto = document.forms["send_to_friend"]["mailto"].value;
			message = document.forms["send_to_friend"]["message"].value;
			
			
			$.post("includes/send_mail.php", {yourmail: yourmail, mailto: mailto, message: message });
		
			document.forms["send_to_friend"]["yourmail"].value = "";
			document.forms["send_to_friend"]["mailto"].value = "";
			document.forms["send_to_friend"]["message"].value = "";
			
			
			$("#show_invita").fadeIn("normal");
			$("#btn_close2").fadeIn("normal");
		
			}
	
		}
	
	}
	
function checkYourEmail(email) {
	
	
	var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	
	if (!filter.test(email.value)) 
	{
		alert("La tua mail non e' corretta!");
		email.focus
		
		return false;
	
	}
	
	return true;
}

function checkFrindEmail(email) {
	
	
	var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	
	if (!filter.test(email.value)) 
	{
		alert("L'email del tuo amico non e' corretta!");
		email.focus
		
		return false;
	
	}
	
	return true;
}

function check_date(){
	
		var min_age = 18;
	
		/* change "age_form" to whatever your form has for a name="..." */
		var year = parseInt(document.age_form.year.value);
		var month = parseInt(document.forms["age_form"]["month"].value) - 1;
		var day = parseInt(document.forms["age_form"]["day"].value);
	
		var theirDate = new Date((year + min_age), month, day);
		var today = new Date();
	
		if ( (today.getTime() - theirDate.getTime()) < 0) {
			alert("Bisogna essere maggiorenni per accedere al sito!");
			return false;
		}
		else {
			//location = 'index2.php?country='+document.forms["age_form"]["country"].value;
			
			$("#page_0").fadeOut("normal", function() {
													
													$("#page_1").fadeIn("normal");
													$("#menu").fadeIn("normal");
													
													
													
													})
			
			return false;
		}
		
	
	
	}


function check_test_drive(){
	
	
	var result = 0;
	
	form_test_drive =  loginForm = document.getElementById('test_drive');

	
	if( form_test_drive._1[0].checked == true){
		
		result++;
		
		}
		
	if( form_test_drive._2[1].checked == true){
		
		result++;
		
		}
		
	if( form_test_drive._3[2].checked == true){
		
		result++;
		
		}
	if( form_test_drive._4[0].checked == true){
		
		result++;
		
		}
	if( form_test_drive._5[1].checked == true){
		
		result++;
		
		}
	
	if( form_test_drive._6[0].checked == true){
		
		result++;
		
		}
		
	if( form_test_drive._7[0].checked == true){
		
		result++;
		
	}

	if( form_test_drive._8[0].checked == true){
		
		result++;
		
		}
		
	if( form_test_drive._9[2].checked == true){
		
		result++;
		
		}
		
	if( form_test_drive._10[1].checked == true){
		
		result++;
		
		}

	
	if(result >= 8){
		
		$("#show_test_drive").load("pages/avviso_si.php");
		$("#show_test_drive").fadeIn("normal");
		$("#btn_close").fadeIn("normal");
		
		} else {
			
			if(result < 5){
				$("#show_test_drive").load("pages/avviso_no.php");
				$("#show_test_drive").fadeIn("normal");
				$("#btn_close").fadeIn("normal");
				//printa();
			
			}else{
				$("#show_test_drive").load("pages/avviso_ni.php");
				$("#show_test_drive").fadeIn("normal");
				$("#btn_close").fadeIn("normal");
				
				}
			
			}
	
	$(".radio_input1_r").fadeIn("normal");
	$(".radio_input2_r").fadeIn("normal");
	$(".radio_input3_r").fadeIn("normal");
	$(".radio_input4_r").fadeIn("normal");
	$(".radio_input5_r").fadeIn("normal");
	$(".radio_input6_r").fadeIn("normal");
	$(".radio_input7_r").fadeIn("normal");
	$(".radio_input8_r").fadeIn("normal");
	$(".radio_input9_r").fadeIn("normal");
	$(".radio_input10_r").fadeIn("normal");
	}
	
	
function printa() {
	
	
		$("#fancy_overlay").fadeIn("normal");
		$("#fancy_close").fadeIn("normal");
	
	
	}
	
function nascondi_overlay() {
	
		$("#show_test_drive").fadeOut("normal");
		$("#btn_close").fadeOut("normal");
		$("#show_invita").fadeOut("normal");
		$("#btn_close2").fadeOut("normal");
	
}