function validaContacto() {
	if ($('personacontacto').value=='') {
		alert('Debe introducir el nombre de la persona de contacto');
		$('personacontacto').focus();
		return false;
	}
	if ($('email').value=='') {
		alert('Debe introducir el correo electrónico');
		$('email').focus();
		return false;
	}
	if (!validate_email('email','Debe introducir un correo electrónico válido')) {
		return false;
	}

	if ($('telefono').value=='') {
		alert('Debe introducir un teléfono de contacto');
		$('telefono').focus();
		return false;
	}
	
	if ($('detalles').value=='') {
		alert('Debe introducir los detalles del asunto');
		$('detalles').focus();
		return false;
	}
	return true;
}

function validate_email(field,alerttxt) {
	tm=document.getElementById(field);
	apos=tm.value.indexOf("@");
	dotpos=tm.value.lastIndexOf(".");
	if (apos<1||dotpos-apos<2) 
		{alert(alerttxt);return false;}
	else {return true;}
}

function cierraBanner() {
	document.getElementById('bannerPortada').style.display='none';
};
