// PARA DESPLEGAR LA GALERIA DE FOTOS
function fotosDesp(){
	
	if ( document.getElementById("contenedor_fotografias").className == 'fotos_ocultas' ) {
		document.getElementById("contenedor_fotografias").className = 'fotos_vistas';
		document.getElementById("contenedor").className = 'contenedor_fotos';
      } else {
		document.getElementById("contenedor_fotografias").className = 'fotos_ocultas';
		document.getElementById("contenedor").className = 'contenedor_nofotos';
      }
	
}

// PARA LINKAR MAILS SIN QUE LOS RASTREEN ROBOTS
function mailnobot(nm,dm)
{
   mailurl = "mailto:" + nm + "@" + dm;
   window.location = mailurl;
}