// JavaScript Document
var procesando;

function Color(id, src){

	//document.getElementById('capa_imggc').style.display = '';
	//document.getElementById('imggc').src = "../uploads/colores/"+src;
	document.getElementById('color_actual').value = id;
	document.getElementById('rad'+id).checked=true;

	RevisaOfertas();

}
// ______________________________________________________________________________________________________________

function RevisaOfertas(){

	if (document.frm.color_actual.value.length > 0 && document.frm.talla.value > 0){
		procesando = true;
		functionlater = 'procesando=false';
		page('div_oferta', 'catalogo.cod.php', 'accion=miraofertas&art='+document.frm.id.value+'&color='+
			 			document.frm.color_actual.value+'&talla='+document.frm.talla.value, ' ');

	}
}
// ______________________________________________________________________________________________________________

function Anadir(){
	//Me aseguro de que hay seleccionado un Articulo -> color -> talla
	if (procesando) return;
	if (document.frm.color_actual.value.length > 0 && document.frm.talla.value > 0 && document.frm.id.value.length > 0){

		var unidades = document.frm.unidades.value;

		if (unidades.length > 0){
			var numero = true;

			for (var i=0; i < unidades.length; i++){
				numero = numero && esDigito(unidades.charAt(i));
			}
			if (!numero){
				alert('Por favor, indica un número de unidades correcto');
				return;
			}
		}else{
			alert('Por favor, indica el número de unidades que deseas');
			return;
		}

		document.getElementById('divtalla').style.visibility = "hidden";
		document.getElementById('divunidades').style.visibility = "hidden";

		document.getElementById('div_anadir').style.display = 'block';
		page('div_anadir', 'catalogo.cod.php', 'accion=anadir&art='+document.frm.id.value+'&color='+
			 			document.frm.color_actual.value+'&talla='+document.frm.talla.value+'&unidades='+unidades+'&oferta='+
						document.frm.oferta_actual.value+'&subcat='+document.frm.subcat.value, ' ');
	}else{
		alert('Por favor, selecciona un color y una talla para poder añadir el artículo a su pedido	');
		return;
	}

}
// ______________________________________________________________________________________________________________

function CierraAviso(){
	document.getElementById('div_anadir').style.display = 'none';

	document.getElementById('divtalla').style.visibility = "visible";
	document.getElementById('divunidades').style.visibility = "visible";

}
// ______________________________________________________________________________________________________________

function Enviar(){

	if (document.frm.nombre.value.length > 0 &&
		document.frm.from.value.length > 0){

		document.frm.url.value = opener.location.href;
		document.frm.submit();
	}else{
		alert('Faltan datos para poder enviar las recomendaciones');
	}

}
// ______________________________________________________________________________________________________________

function esDigito(a){

	if(a == 1 || a == 2 || a == 3 || a == 4 || a == 5 || a == 6 || a == 7 || a == 8 || a == 9 || a == 0 || a == ".") {
		return true;
	}else{
		return false;
	}
}