function  cambiar(foto, destino){
	document.getElementById("imagen").style.display="none";
	document.getElementById("cont_imagen").style.display="block";
	document.getElementById("nayade1").src=foto;
	document.getElementById("nayade2").href=destino;
}


function  cambiar_sin(foto){
	document.getElementById("imagen").style.display="block";
	document.getElementById("cont_imagen").style.display="none";
	document.getElementById("sin_enlace").src=foto;
}

function Alternar(Seccion, ubicacion){
					if (document.getElementById(Seccion).style.display=="none")
						{
							document.getElementById(Seccion).style.display="";
							document.getElementById(ubicacion).innerHTML = "Cerrar";
				
						}else{
							document.getElementById(Seccion).style.display="none";
							document.getElementById(ubicacion).innerHTML = "Disponibilidad";
				
						}
}



function validar(formulario){
    //valido el nombre
    if (document.formulario.name.value.length==0){
       alert("Tiene que escribir su nombre")
       document.formulario.nombre.focus()
       return 0;
    }



    //valido el interés
    if (document.formulario.message.selectedIndex==0){
       alert("Debe seleccionar un motivo de su contacto.")
       document.formulario.interes.focus()
       return 0;
    }

    //el formulario se envia
    document.formulario.submit();
}
