function enviarContacto(){
	if (document.contacto.mail.value == "" || !valEmail(document.contacto.mail.value)){
		document.contacto.mail.style.border = "1px solid #FF0000";
		return;
	}
	
	document.contacto.submit();
}

function ponerNormal(cual){
	cual.style.border = '1px solid #666';
}


function abrirResultado(){
	var texto = "<br>Gracias por ponerse en contacto con nosotros. <br>En breve le responderemos.";
	document.getElementById('resultado').innerHTML = texto;
	
	var h,w;
	if (navigator.appVersion.indexOf("MSIE") != -1){
		h = document.documentElement.clientHeight;
		w = document.documentElement.clientWidth;
	} 
	else{
		h = window.innerHeight;
		w = window.innerWidth;
	}
	
	document.getElementById('resultado').style.top = h/2 - 35 + "px";
	document.getElementById('resultado').style.left = w/2 - 105 + "px";
	document.getElementById('resultado').style.visibility = 'visible';
	
	document.getElementById('fondoResultado').style.width = w + "px";
	document.getElementById('fondoResultado').style.height = h + "px";
	
	fadeIn('fondoResultado');
}

function cerrarResultado(){
	document.getElementById('resultado').innerHTML = "";
	document.getElementById('resultado').style.visibility = 'hidden';
	
	fadeOut('fondoResultado');
}

