<!--

//PRECARGA DE IMAGENES
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}


//CAPAS DESPLEGABLES -----------------------------------------------------------------------------------------------
function menuDOWN(id){
	
	if (window.getComputedStyle) { //leemos valor, solo Moz
  	if ( window.getComputedStyle(document.getElementById(id),null).display == 'none' ) {
	 		document.getElementById(id).style.display = 'block';
		} else {
			document.getElementById(id).style.display = 'none';
		}
	} else { //leemos valor, solo IE
 		if ( document.getElementById(id).currentStyle.display == 'none' ) {
			 document.getElementById(id).style.display = 'block';
		} else {
			 document.getElementById(id).style.display = 'none';
		}

	}
	
}

//VALIDACION DE FORMULARIO
function validar(){ 
	 //valido el nombre 
    if (document.form1.nombre.value.length==0){ 
       alert("Tienes que poner un nombre") 
       document.form1.nombre.focus() 
       return false; 
    }
	
	 //valido el email 
    if (document.form1.email.value.length==0){ 
       alert("Tienes que poner un email") 
       document.form1.email.focus() 
       return false; 
    }
}
	
function validar2(){ 
	 //valido la empresa 
    if (document.form2.empresa.value.length==0){ 
       alert("Tienes que poner una empresa") 
       document.form2.empresa.focus() 
       return false; 
    }
	
	 //valido el movil 
    if (document.form2.movil.value.length==0){ 
       alert("Tienes que poner un movil") 
       document.form2.movil.focus() 
       return false; 
    }
    
}

	//-->


//FUNCION PARA EVITAR EL RASTREO DE MAILS POR ROBOTS
function mailnobot(nm,dm)
{
   mailurl = "mailto:" + nm + "@" + dm;
   window.location = mailurl;
}


//-->
