/* MENUS DESPLEGABLES */
function despliega(id,id2){
	
	if ( document.getElementById(id).style.display == 'block' ) {
          document.getElementById(id).style.display = 'none';
      } else {
          document.getElementById(id).style.display = 'block';
		  document.getElementById(id2).style.display = 'none';
      }
	
}

/* VALIDACION FORMULARIO TRABAJA CON NOSOTROS */
function validarFormularioEmpleo(){/*
	if ( 
		document.getElementById("nombre").value == "" || 
		document.getElementById("apellidos").value == "" || 
		document.getElementById("nacimiento").value == "" || 
		document.getElementById("domicilio").value == "" || 
		document.getElementById("telefono").value == "" || 
		(document.getElementById("perfil").value == "" && document.getElementById("perfil_otros").value == "") || 
		document.getElementById("ingles").value == "" || 
		document.getElementById("frances").value == "" || 
		document.getElementById("catalan").value == "" || 
		document.getElementById("castellano").value == "" || 
		document.getElementById("url").value == "" 
		) { alert("Ha de rellenar los campos obligatorios *"); return false; }*/
}

/* POP-UPs */
function popUp(url,ancho,alto) {
	window.open(''+url+'','','width='+ancho+',height='+alto+'');
}

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