if (document.images) {
	var activado = new Array();
	var desactivado = new Array();	
	desactivado['mail'] = new Image();
	desactivado['mail'].src = 'imagenes/mail.jpg';
	activado['mail'] = new Image();
	activado['mail'].src = 'imagenes/mail_on.jpg';
	for (i=1;i<=4;i++){
		desactivado['menu_0'+i] = new Image();
		desactivado['menu_0'+i].src = 'imagenes/menu/menu_0'+i+'.jpg';
		activado['menu_0'+i] = new Image();
		activado['menu_0'+i].src = 'imagenes/menu/menu_0'+i+'_on.jpg';
	}
	for (i=0;i<=6;i++){
		desactivado['submenu_0'+i] = new Image();
		desactivado['submenu_0'+i].src = 'imagenes/submenu/submenu_0'+i+'.jpg';
		activado['submenu_0'+i] = new Image();
		activado['submenu_0'+i].src = 'imagenes/submenu/submenu_0'+i+'_on.jpg';
	}
	desactivado['subcoleccion_10'] = new Image();
	desactivado['subcoleccion_10'].src = 'imagenes/submenu/subcoleccion_10.jpg';
	activado['subcoleccion_10'] = new Image();
	activado['subcoleccion_10'].src = 'imagenes/submenu/subcoleccion_10_on.jpg';
	desactivado['subcoleccion_20'] = new Image();
	desactivado['subcoleccion_20'].src = 'imagenes/submenu/subcoleccion_20.jpg';
	activado['subcoleccion_20'] = new Image();
	activado['subcoleccion_20'].src = 'imagenes/submenu/subcoleccion_20_on.jpg';
}

function act(nombreImagen) {
	//alert(activado[nombreImagen].src);
	if (document.images){
		document[nombreImagen].src=activado[nombreImagen].src;
	}
}

function desact(nombreImagen) {
	if (document.images){
		document[nombreImagen].src=desactivado[nombreImagen].src;
	}
}

function eliminar(i) {
	id=document.getElementById('id_'+i).value;
	if (document.getElementById('talla_'+i)!=undefined){
		id_talla=document.getElementById('talla_'+i).value;
	} else id_talla="";
	if (id_talla!=""){
		self.location="tienda_ver_carrito.php?accion=eliminar&id="+id+"&id_talla="+id_talla;
	} else self.location="tienda_ver_carrito.php?accion=eliminar&id="+id;
	
}

function mail(texto){
	var mailres = true;            
	var cadena = "abcdefghijklmnñopqrstuvwxyzABCDEFGHIJKLMNÑOPQRSTUVWXYZ1234567890@._-";
	var arroba = texto.indexOf("@",0);
	var punto = texto.lastIndexOf(".");
	if ((texto.lastIndexOf("@")) != arroba){
		arroba = -1;
	}
	var contador=0;
	while (contador<texto.length){
		if (cadena.indexOf(texto.substr(contador, 1),0) == -1){
			mailres = false;
		} else contador++;
	}
	
	if ((arroba > 1) && (arroba + 1 < punto) && (punto + 1 < (texto.length)) && (mailres == true) && (texto.indexOf("..",0) == -1)){
		mailres = true;
	} else mailres = false;
	
	return mailres;
} 

function cambiar_envio(){
	/*alert(document.getElementById("precio").value);
	// primero cojo el precio antiguo y lo quito de la firma
	precio_antiguo=document.getElementById("precio").value;
	precio_antiguo_firma=precio_antiguo*100;
	precio_antiguo_firma.toString();
	
	if (document.getElementById('forma_envio').value=='normal'){
		document.getElementById("precio").value=precio_antiguo-12.50+8.50;
	} else {
		document.getElementById("precio").value=precio_antiguo-8.50+12.50;
	}
	//alert(document.getElementById("precio").value);
	document.getElementById('precio_total').innerHTML=document.getElementById("precio").value + " &euro;";
	document.getElementById('Ds_Merchant_Amount').value=document.getElementById("precio").value*100; */
	
	self.location="tienda_finalizar_compra.php?envio="+document.getElementById("forma_envio").value;
	return false;
}

function enviar_formulario(){
	document.getElementById('error').style.display='none';
	document.getElementById('enviado').style.display='none';
	if ((document.getElementById('f_nombre').value!="")&&(document.getElementById('f_email').value!="")&&(document.getElementById('f_email').value==document.getElementById('f_email2').value)&&(document.getElementById('f_consulta').value!="")&&(mail(document.getElementById('f_email').value))){
		document.getElementById('formulario').action='contacto.php';
		document.getElementById('formulario').submit();
		document.getElementById('formulario').action='';
	} else document.getElementById('error').style.display='block';	
}

function enviar_formulario_compra(identificador){
	//alert(document.getElementById('nif').value);
	document.getElementById('error').style.color='#999';
	if ((document.getElementById('nombre').value!="")&&(document.getElementById('nif').value!="")&&(document.getElementById('apellidos').value!="")&&(document.getElementById('telefono').value!="")&&(document.getElementById('direccion').value!="")&&(document.getElementById('cp').value!="")&&(document.getElementById('ciudad').value!="")&&(document.getElementById('provincia_estado').value!="")&&(document.getElementById('pais').value!="")&&(mail(document.getElementById('email').value))) {
		document.getElementById("Ds_Merchant_MerchantData").value=document.getElementById('nombre').value +'##'+ document.getElementById('apellidos').value +'##'+ document.getElementById('email').value +'##'+ document.getElementById('telefono').value +'##'+ document.getElementById('direccion').value +'##'+ document.getElementById('cp').value +'##'+ document.getElementById('ciudad').value +'##'+ document.getElementById('provincia_estado').value +'##'+ document.getElementById('pais').value +'##'+ document.getElementById('envio').value + '##' + document.getElementById('carrito_tmp').value + '##' + document.getElementById('nif').value;
		//alert(document.getElementById("Ds_Merchant_MerchantData").value);
		//document.getElementById('formulario_envio_tienda').action='https://sis.sermepa.es/sis/realizarPago'; //https://sis-t.sermepa.es:25443/sis/realizarPago
		/*document.getElementById('formulario_envio_tienda').target='_self';
		document.getElementById('formulario_envio_tienda').action='capturar_compra_no_tpv.php';
		document.getElementById('formulario_envio_tienda').submit();*/
		document.getElementById('formulario_envio_tienda').target='_self';
		document.getElementById('formulario_envio_tienda').action="tienda.php?terminar_compra=1&Ds_Order="+identificador;
		document.getElementById('formulario_envio_tienda').submit();
		/*self.location=;*/
	} else document.getElementById('error').style.color='#f00';
	return false;
}