function canviarMail(mail){
	switch (mail) {
			case "admon":
					window.open('mailto:administracion@editorialglosa.es');
				 break
			case "comercial":
					window.open('mailto:comercial@editorialglosa.es');
				 break
			case "distribucion":
					window.open('mailto:distribucion@editorialglosa.es');	
				 break
			case "edicion":
						window.open('mailto:edicion@editorialglosa.es');
				 break
			case "licencias":
						window.open('mailto:licencias@editorialglosa.es');
				 break
			case "pedidos":
						window.open('mailto:pedidos@editorialglosa.es');
				 break
			case "produccion":
						window.open('mailto:produccion@editorialglosa.es');
				 break
			default: 
				break;
	}
	
/*	text = new Array(1);
	
		for(i=0;i<2;i++) text[i]=new Array(1);

			text[0][0] = "mail";
			text[1][0] = "administracion@editorialglosa.es";
			
			document.getElementById(text[0][0]).firstChild.nodeValue = text[1][0];
			document.getElementById('a'+text[0][0]).style.display= "block";
			document.getElementById('a'+text[0][0]).href = text[1][0];*/
}