// JavaScript Document

function goTo(dir){
	window.open(dir,"_self");
}

function send(){	
	if((document.frmContacto.txtNombre != "")&&(document.frmContacto.txtEmail != "")&&(document.frmContacto.txtConsulta != "")){
		if(document.frmContacto.chkAviso.checked == "true"){
			document.frmContacto.submit();
		}else{
			alert("Debe aceptar la política de privacidad");				
		}
	}else{
		alert("Debe rellenar los datos obligatorios");
	}
}

function sendPass(){
	if(document.frmContacto.txtEmail != ""){
		document.frmContacto.submit();
	}else{
		alert("Debe indicar el e-mail");
	}
}

function muestra_oculta(id){
	capa1.style.display = 'none';
	capa2.style.display = 'none';
	capa3.style.display = 'none';
	capa4.style.display = 'none';
	if (document.getElementById){ //se obtiene el id
		var el = document.getElementById(id); //se define la variable "el" igual a nuestro div
		el.style.display = (el.style.display == 'none') ? 'block' : 'none'; //damos un atributo display:none que oculta el div
	}
}

function buscar(){
	if(document.frmBusqueda.txtBusqueda.value == ""){
		alert("Debe indicar un texto de búsqueda");
	}else{
		document.frmBusqueda.submit();
	}
}
