// herramientas


function result_herramientas(campo, pagina){

		switch(pagina){
			
			case "artistas":
				
				if( (campo=="artista") && (document.getElementById("artista").value!=0) )window.location="artista.php?id="+document.getElementById("artista").value;
				
				if( (campo=="galeria") && (document.getElementById("galeria").value!=0) )window.location="galeria.php?id="+document.getElementById("galeria").value;
					
			break;
			
			case  "galerias": 

				if( (campo=="artista") && (document.getElementById("artista").value!=0) )window.location="artista.php?id="+document.getElementById("artista").value;
				
				if( (campo=="galeria") && (document.getElementById("galeria").value!=0) )window.location="galeria.php?id="+document.getElementById("galeria").value;
				
				if( (campo=="localizacion") && (document.getElementById("localizacion").value!=0) )window.location="galerias.php?localizacion="+document.getElementById("localizacion").value;
			
			break;
			
			case "obras":
			
				if( (campo=="obras") && (document.getElementById("obras").value!=0) )window.location="obra.php?id="+document.getElementById("obras").value;
				
				if( (campo=="artista") && (document.getElementById("artista").value!=0) )window.location="obras.php?id="+document.getElementById("artista").value;
			
			
			break;
		}
			
		
}



// USERS 


function enviar_contacto(formulario, mensaje){

	send = 0;

	if(isEmail(document.getElementById("email").value)) {
		
		alert(mensaje);
		
	}else{
	
		document.getElementById(formulario).submit();
		
	}
	
	
}


function isEmail(smail) {
	
	var re=/^[a-z0-9\-\.]+@[a-z0-9\-\.]+\.[a-z]{2,}$/i;
	
	if(smail.match(re))	{
		
		return false;
		
	} else {
				
		return true;
		
	}
}
