// JavaScript Document
document.write(	'<script language="javascript" type="text/javascript" src="../js/XHConn.js"></script>'+
				'<script src="../js/ver.js" type="text/javascript" language="javascript"></script>'+
				'<script src="../js/prototype.js" type="text/javascript"></script>'+
				'<script src="../js/scriptaculous.js?load=effects" type="text/javascript"></script>'+
				'<script src="../js/lightbox.js" type="text/javascript"></script>'+
				'<script src="../js/compruebacampos.js" type="text/javascript"></script>');

var campos=new Array();
campos['obligatorios'] = new Array('direccion', 'localidad', 'provincia', 'cp');
//___________________________________________________________________________________________________

function Eliminar(art, color, talla){
	
	if (art > 0 && color >0 && talla > 0){
		page('div_oferta', 'pedido.cod.php', 'accion=miraofertas&art='+document.frm.id.value+'&color='+
			 			document.frm.color_actual.value+'&talla='+document.frm.talla.value, ' ');	
	}
	
}
//___________________________________________________________________________________________________

function CambiaUnidades(id, color, talla, unidades){
		
	data('pedido.cod.php', 'accion=cambiaunidades&art='+id+'&color='+color+'&talla='+talla+'&unidades='+unidades, function(xml){
																														   
			var resultado = xml.getElementsByTagName('resultado')[0].firstChild.data;
			
			if (resultado == 1){
				window.location.href='./index.php';
			}else{
				alert('No se pudo realizar el cambio, inténtelo de nuevo');
			}
			
		}
	);
}
//___________________________________________________________________________________________________

function CompruebaUser(){
	
	var mail = document.frm.mail.value;
	var pass = document.frm.pass.value;
	
	document.getElementById('msgError').style.display='none';
	
	data('pedido.cod.php', 'accion=compruebauser&mail='+mail+'&pass='+pass, function(xml){
				var resultado = xml.getElementsByTagName('resultado')[0].firstChild.data;
			
				if (resultado == 1){
					window.location.href = destino;    /*'./direccion.php';*/
				}else{
					document.getElementById('msgError').innerHTML="Error, los datos no son correctos";
					document.getElementById('msgError').style.display='';
				}																 
																						 
		}
	);
	
}
//___________________________________________________________________________________________________

function NuevoUsuario(){
	
	if (document.frm.password.value != document.frm.password2.value){
		alert('El password debe coincidir en ambos campos');
		document.frm.password.focus();
		return;
	}
	
	var campos = new Array();
	
	campos['obligatorios'] = new Array('nombre', 'apellidos', 'direccion', 'localidad','localidad','cp', 'tel', 'email', 'password');
	campos['emails'] = new Array('email');
	
if (document.frm.pais.value=="España" && document.frm.provincia.value=="Todas"){
	
	alert("No se puede Elegir Provincia Extranjero y Pais España");
	
}else{			
			
				if (CompruebaCampos(campos, document.frm)){
					
					var query = "accion=nuevouser&";
					
					for (var i=0; i<document.frm.elements.length; i++){
						if (document.frm.elements[i].title.length > 0){
							query = query+document.frm.elements[i].name+"="+document.frm.elements[i].value+"&";	
						}
					}
					
					data('pedido.cod.php', query, function(xml){
							var resultado = xml.getElementsByTagName('resultado')[0].firstChild.data;
						
							if (resultado == 1){
								/*
								alert('Usuario dado de alta correctamente, utilice los campos superiores para acceder');
								for (var i=0; i<document.frm.elements.length; i++){
										if (document.frm.elements[i].title.length > 0){
											document.frm.elements[i].value="";
										}
								}
								document.frm.password2.value="";
								document.frm.mail.focus();*/
								document.frm.mail.value = document.frm.email.value;
								document.frm.pass.value = document.frm.password.value;
								CompruebaUser();
							}else if (resultado == "err1062"){
								alert('No se ha podido dar de alta el usuario, el correo electrónico ya esta registrado.\nUtilice recordar contraseña para obtener su password.');
							}else{
								alert('No se ha podido dar de alta el usuario, intentelo de nuevo');
							}
						}
					);
				}

}
}
//___________________________________________________________________________________________________

function EnviaDireccion(){
	
		var provincia=document.frm.provincia.value;
		var pais=document.frm.pais.value;
		
		
		
		
		
		if (provincia=="Todas"){
			
			document.getElementById('divProvincia').style.display = "";
			campos['obligatorios'] = new Array('direccion', 'localidad', 'provincia', 'cp','prov');
				
							
		}else{
		
				if (provincia=="Resto España")
				{
					document.frm.pais.value="España";
					document.frm.pais.readonly= "true";
					document.getElementById('divProvincia').style.display="none";
					campos['obligatorios'] = new Array('direccion', 'localidad', 'provincia', 'cp');
				}else{				
				
						if(provincia!="Todas")
							{
							//document.frm.prov2.value = provincia;
							document.frm.prov.value = provincia;
							document.getElementById('divProvincia').style.display='none';
							document.frm.pais.value="España";
							document.frm.pais.readonly= "true";
							campos['obligatorios'] = new Array('direccion', 'localidad', 'provincia', 'cp');
							}
									
					 }
		
		
		}
	
	if (pais=="Resto del Mundo" && provincia=="Todas")
				{
					document.getElementById('divPais').style.display="";			
					campos['obligatorios'] = new Array('direccion', 'localidad', 'provincia', 'cp','prov','pais2');
						
				}
		
		
		if (pais!="Resto del Mundo")document.getElementById('divPais').style.display="none";
		if (provincia!="Todas")document.getElementById('divPais').style.display="none";
	//document.frm.submit();		
}
// ______________________________________________________________________________________________________________

function Enviar(){
	var prov2=document.frm.provincia.value;	
	
	var pais=document.frm.pais.value;
	//var provincias="";
	
	var provincias2=new Array;
	provincias2=Array("Todas","Madrid","Mallorca","Ibiza","Menorca","Formentera","Gran Canaria","Tenerife","La Gomera","Lanzarote","Fuerteventura","El Hierro","La Palma","Ceuta","Melilla");
	
	if (CompruebaCampos(campos, document.frm)){
	
		var resto_espana = true;
		for(var j=0; j<provincias2.length; j++)
		{
			if (provincias2[j]==prov2) {
				resto_espana = false;
				break;
			}

		}
		
		if (resto_espana){
			document.frm.prov.value = document.frm.provincia.value;
			document.frm.prov2.value = "Resto España";
		}else{
			//Se queda como esta
			if (pais == "España") document.frm.prov.value = "";
			document.frm.prov2.value = document.frm.provincia.value;
			
		}
		

		
		if (prov2=="Todas" && pais=="España"){			
			alert("No puede elegir Pais España y Provincia Extranjero");
		}else{						
			document.frm.submit();		
		}
	
	
	
	}

}
// ______________________________________________________________________________________________________________

function FinalizaPedido(){
	document.frm.accion.value = "procesapedido";
	document.frm.submit();	
}
//_______________________________________________________________________________________________________________

function LanzaPagoTPV(){
	/*
	var msgbox = "";
	for(var i = 0; i<document.frmTPV.elements.length;i++){
		msgbox+= document.frmTPV.elements[i].name + ": "+document.frmTPV.elements[i].value + "\n";
	}
	alert(msgbox);*/
	document.frmTPV.submit();
	
}
//_______________________________________________________________________________________________________________

function modificaUsuario(){
	if (document.frm.password.value != document.frm.password2.value){
		alert('El password debe coincidir en ambos campos');
		document.frm.password.focus();
		return;
	}
	
	
	var campos = new Array();
	
	campos['obligatorios'] = new Array('nombre', 'apellidos', 'direccion', 'localidad', 'provincia', 'cp', 'tel', 'email', 'password');
	campos['emails'] = new Array('email');
if (document.frm.pais.value=="España" && document.frm.provincia.value=="Todas"){
	
	alert("No se puede Elegir Provincia Extranjero y Pais España");
	
}else{
			if (CompruebaCampos(campos, document.frm)){
					
						var query = "accion=modificauser&";
						
						for (var i=0; i<document.frm.elements.length; i++){
							if (document.frm.elements[i].title.length > 0){
								query = query+document.frm.elements[i].name+"="+document.frm.elements[i].value+"&";	
							}
							
						}
					
				
					data('pedido.cod.php', query, function(xml){
						var resultado = xml.getElementsByTagName('resultado')[0].firstChild.data;
						
							if (resultado == 1){
								alert('Usuario modificado correctamente');
									
								window.location.href='./misdatos.php';
							}else if (resultado == "err1062"){
								alert('No se ha podido dar de alta el usuario, el correo electrónico ya esta registrado.\nUtilice recordar contraseña para obtener su password.');
							}else{
								alert('No se ha podido dar de alta el usuario, intentelo de nuevo');
							}
						}
					);
				}								   
	
}
}
//_______________________________________________________________________________________________________________

function abredatos(){
	
	document.getElementById('datos').style.display="";	
	document.getElementById('historial').style.display="none";
	Provincias();
}
//_______________________________________________________________________________________________________________

function abrehistorial(){

	document.getElementById('historial').style.display="";
	document.getElementById('datos').style.display="none";
	
}
//_______________________________________________________________________________________________________________

function Expand(id){
	
	//Muestra u oculta el detalle
	var tr = document.getElementById('trampli'+id);
	if (tr.style.display == 'none'){
		tr.style.display = '';	
	}else{
		tr.style.display = 'none';
	}
	
	//Cambia la imágen
	if(document.getElementById('imgamp'+id).title == "mas"){
		document.getElementById('imgamp'+id).src = "../images/menos.gif";
		document.getElementById('imgamp'+id).title = "menos";
	}else{
		document.getElementById('imgamp'+id).src = "../images/mas.gif";
		document.getElementById('imgamp'+id).title = "mas";
	}
}
// ______________________________________________________________________________________________________________

function CargaPais(){
//var indice = document.frm.provincia.selectedIndex 
var provincia= document.frm.provincia.value;
var pais= document.frm.pais.value;	

			if 	(pais=="Resto del Mundo"){
				
				document.getElementById('divPais').style.display="";
					
			}else{
				
				document.getElementById('divPais').style.display="none";
				
			}
	
	
		if 	(provincia=="Todas"){	
				
				document.getElementById('divProvincia').style.display="";
				
				
		}else{
				
				document.getElementById('divProvincia').style.display="none";
				
		}


			if 	(provincia!="Todas"){
				
					document.frm.pais.value="España";
					document.frm.pais.readnly="true";
					
				}


		if 	(provincia!="Todas"){
			
			document.getElementById('divPais').style.display="none";
							
			}
}