
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];}}
	}

	function MM_openBrWindow(theURL,winName,features) { //v2.0
		window.open(theURL,winName,features);
	}
	//-->

	function zoomText(Accion,Elemento){
		//inicializaciones
		obj=document.getElementById(Elemento);
		obj_menu=document.getElementById("menu");
		obj_footer=document.getElementById("footer");
	
		if (obj.style.fontSize==""){
			obj.style.fontSize="13px";
		}
		
		if (obj_footer.style.fontSize==""){
			obj_footer.style.fontSize="11px";
		}
		
		if (obj_menu.style.fontSize==""){
			obj_menu.style.fontSize="14px";
		} 
		
		actual=parseInt(obj.style.fontSize); //valor actual del tamaÃ±o del texto
		actual_footer=parseInt(obj_footer.style.fontSize);
			actual_menu=parseInt(obj_menu.style.fontSize);
		incremento=1;// el valor del incremento o decremento en el tamaÃ±o

		//accion sobre el texto
		if(Accion=="reestablecer"){
			obj.style.fontSize="13px"
			obj_footer.style.fontSize="11px";
				obj_menu.style.fontSize="14px";
				
				document.getElementById("contenido_1").style.fontSize="10px"
				document.getElementById("contenido_2").style.fontSize="10px"
				document.getElementById("contenido_3").style.fontSize="10px"
				document.getElementById("contenido_4").style.fontSize="10px"
				document.getElementById("contenido_5").style.fontSize="10px"
				document.getElementById("contenido_6").style.fontSize="10px"
				document.getElementById("contenido_7").style.fontSize="10px"
				document.getElementById("contenido_8").style.fontSize="10px"
				document.getElementById("contenido_9").style.fontSize="10px"
				document.getElementById("contenido_10").style.fontSize="10px"
				document.getElementById("contenido_11").style.fontSize="10px"
				document.getElementById("contenido_12").style.fontSize="10px"
		}
		if(Accion=="aumentar"){
			valor=actual+incremento;
			valor_footer=actual_footer+incremento;
				valor_menu=actual_menu+incremento;
			obj_footer.style.fontSize=valor_footer+"px";
				obj.style.fontSize=valor+"px";
					obj_menu.style.fontSize=valor_menu+"px";
			document.getElementById("contenido_1").style.fontSize=valor+"px"
			document.getElementById("contenido_2").style.fontSize=valor+"px"
			document.getElementById("contenido_3").style.fontSize=valor+"px"
			document.getElementById("contenido_4").style.fontSize=valor+"px"
			document.getElementById("contenido_5").style.fontSize=valor+"px"
			document.getElementById("contenido_6").style.fontSize=valor+"px"
			document.getElementById("contenido_7").style.fontSize=valor+"px"
			document.getElementById("contenido_8").style.fontSize=valor+"px"
			document.getElementById("contenido_9").style.fontSize=valor+"px"
			document.getElementById("contenido_10").style.fontSize=valor+"px"
			document.getElementById("contenido_11").style.fontSize=valor+"px"
			document.getElementById("contenido_12").style.fontSize=valor+"px"
		}
		if(Accion=="disminuir"){
			valor=actual-incremento;
			valor_footer=actual_footer-incremento;
				valor_menu=actual_menu-incremento;
			obj.style.fontSize=valor+"px"
				obj_menu.style.fontSize=valor_menu+"px"
			obj_footer.style.fontSize=valor_footer+"px";
		}
	}

	mails = new Array()
	mails["dominio"]="electrobombasjavea.com";
	mails["conector"]="@";
	mails["pedidos"]=new Array();
	mails["pedidos"]["usuario"]="pedidos";
	function dame_correo(usuario){
		if (!mails[usuario]["dominio"]){
	   		return mails[usuario]["usuario"] + mails["conector"] + mails["dominio"];
		}else{
	   		return mails[usuario]["usuario"] + mails["conector"] + mails[usuario]["dominio"];	
		}
	}

	function enlace_correo(usuario){
		var usuario;
	   document.write("<a href='mailto:" + dame_correo(usuario) + "' title='Enviar correo a "+dame_correo(usuario)+"'>" + dame_correo(usuario) + "</a>")
	}

