function mostrar_ocultar(apartado)
{
	document.getElementById('inicio').style.display='none';
	document.getElementById('hoteles').style.display='none';
	document.getElementById('restaurantes').style.display='none';
	document.getElementById('comercio').style.display='none';
	document.getElementById('fastfood').style.display='none';
	document.getElementById(apartado).style.display='block';
}
function validarContactar()
{
	var nombre = document.getElementById('nombre').value;
	var apellidos = document.getElementById('apellidos').value;
	var email = document.getElementById('email').value;
	var telefono = document.getElementById('telefono').value;
	var consulta = document.getElementById('consulta').value;	

	if (nombre == "")
	{
		alert("El campo nombre es obligatorio");
		document.getElementById('nombre').focus();
		
	}
	else if (apellidos == "")
	{
		alert("El campo apellidos es obligatorio");
		document.getElementById('apellidos').focus();
	}
	else if (email == "")
	{
		alert("El campo e-mail es obligatorio");
		document.getElementById('email').focus();
	}
	else if (!validarMail())
	{
		alert("Dirección de e-mail no válida.");
		document.getElementById('email').focus();		
	}	
	else if (telefono == "")
	{
		alert("El campo teléfono es obligatorio");
		document.getElementById('telefono').focus();
	}
	else if (consulta == "")
	{
		alert("El campo consulta es obligatorio");
		document.getElementById('consulta').focus();
	}	
	else	
		document.getElementById('contactar').submit();

}
function validarMail()
{
	var email = document.getElementById('email').value;
	var filter=/^[A-Za-z][A-Za-z0-9_.]*@[A-Za-z0-9_]+\.[A-Za-z0-9_.]+[A-za-z]$/;
	if (filter.test(email))
		return true;
	else
		return false;
}
