function hideDiv(divId){
	document.getElementById(divId).style.display='none'	
}
function showDiv(divId){
	document.getElementById(divId).style.display='block'	
}
	
function showForm(){
	window.scrollTo(0,0);
	showDiv('overlay');
	showDiv('vip');
}

function hideForm(){
	hideDiv('overlay');
	hideDiv('vip');
}

function enviar_ps() {

		var RegExPattern = /^[69]{1}[0-9]{8}$/;
		var RegExEmail = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*\.(\w{2}|(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro))$/;
		var phone = document.ps_contact.dat_ph.value;
		var email = document.ps_contact.dat_em.value;
		if (!document.ps_contact.accept.checked)
		{
			alert ("Tienes que aceptar la politica de privacidad para poder enviar la solicitud.");
			return;
		}
		if (phone == null || phone =='' || !(phone.match(RegExPattern)))
		{
			alert ('Tienes que indicar un número de teléfono válido para que te podamos contactar.\n\nRecuerda no usar espacios entre los numeros.');
			return;
		}
		if (email == null || email =='' || !(email.match(RegExEmail)))
		{
			alert ('Tienes que facilitar un email válido para que te podamos enviar la comparativa.');
			return;
		}		
	document.ps_contact.submit();
}		
