if ((screen.width == 640) && (screen.height == 480)) 
alert ("ATENCIÓN!!\r\rLa resolución de pantalla que Ud. utiliza actualmente no le permitirá ver bien este sitio.\r\rPor favor, cambie la resolución a 800x600 o más.\r\r\rGracias.")

function muestraesconde(ID) {
		
		cual = document.getElementById(ID).style;
		if (cual.display == "block") {
			cual.display = "none";
			cual.visibility = "hidden";
			
		}else {
			cual.display = "block";
			cual.visibility = "visible";			
		}	
}

function validacontacto(){
		
	if (document.formcontacto.nombre.value==""){
		alert("Se requiere su nombre");
		document.formcontacto.nombre.focus();
		return false;
	}
	
	if (document.formcontacto.area.value==""){
		alert("Se requiere codigo de area");
		document.formcontacto.area.focus();
		return false;
	}
	
	if (document.formcontacto.fono.value==""){
		alert("Se requiere algun telefono Fijo o Celular");
		document.formcontacto.fono.focus();
		return false;
	}
	
	email=document.formcontacto.email.value;
	if(email==""){
		alert("Debe escribir su email.");
		document.formcontacto.email.focus();
		return false;
	}
	else{
		var atSign = Number(String([email]).indexOf("@"));
		var closeDot = Number(String([email]).indexOf(".", atSign));
		if (String([email]).indexOf("@") == -1 || String([email]).indexOf(".") == -1) {
			document.formcontacto.email.focus();
			alert("Email invalido.");
			return false;
		}else if (closeDot-atSign<=1){
			alert("Email invalido.");
			document.formcontacto.email.focus();
			return false;
		}
	}	

}
