
function actualizarPrecio() {

	var precioTotal = 0;
	if (document.getElementById("prod1")) {
		if (document.getElementById("prod1").selectedIndex!=0) {
			document.getElementById("precio1").innerText = document.getElementById("p1x"+document.getElementById("prod1").selectedIndex).value;
			precioTotal += parseFloat(document.getElementById("p1x"+document.getElementById("prod1").selectedIndex).value);
		} else {
			document.getElementById("precio1").innerText = "0";
		}
		document.getElementById("precioTotal").innerHTML = precioTotal;
	}

	if (document.getElementById("prod2")) {
		if (document.getElementById("prod2").selectedIndex!=0) {
			document.getElementById("precio2").innerText = document.getElementById("p2x"+document.getElementById("prod2").selectedIndex).value;
			precioTotal += parseFloat(document.getElementById("p2x"+document.getElementById("prod2").selectedIndex).value);
		} else {
			document.getElementById("precio2").innerText = "0";
		}
		document.getElementById("precioTotal").innerHTML = precioTotal;
	}
		
}


function trim(texto) {
	return texto.replace(/^\s*|\s*$/g,"");
}



function verificarDatosCliente() {
	var completo = true;
	if (trim(document.getElementById("nombre").value) == "") {
		completo = false;
		alert ("Por favor, proporcione su nombre");
	} else {
		if (trim(document.getElementById("telefono").value) == "") {
			completo = false;
			alert ("Por favor, proporcione su telefono");
		} else {
			if (trim(document.getElementById("mail").value) == "") {
				completo = false;
				alert ("Por favor, proporcione su e-mail");
			} else {
				posicion = document.getElementById("mail").value.indexOf('@');
				texto = trim(document.getElementById("mail").value);
				largo = texto.length;
				if (posicion==-1) {
					completo = false;
					alert ("Por favor, proporcione un e-mail valido");
				}
				if (posicion < 3 && posicion != -1) {
					completo = false;
					alert ("Por favor, proporcione un e-mail valido");
				} else {
					if ((largo - posicion - 1) < 3 && posicion != -1) {
						completo = false;
						alert ("Por favor, proporcione un e-mail valido");
					}
				}
			}
		}
	}
	return completo;
}


function verificarCompra(){
	var hayElementosSeleccionados = false;

	if (document.getElementById("prod1"))
		if (document.getElementById("prod1").selectedIndex!=0)
			hayElementosSeleccionados = true;

	if (document.getElementById("prod2"))
		if (document.getElementById("prod2").selectedIndex!=0)
			hayElementosSeleccionados = true;

	if (document.getElementById("prod3"))
		if (document.getElementById("prod3").selectedIndex!=0)
			hayElementosSeleccionados = true;

	if (document.getElementById("prod4"))
		if (document.getElementById("prod4").selectedIndex!=0)
			hayElementosSeleccionados = true;

	if (document.getElementById("prod5"))
		if (document.getElementById("prod5").selectedIndex!=0)
			hayElementosSeleccionados = true;
			
	if (!hayElementosSeleccionados) alert ("Debe seleccionar al menos 1 producto");

	return hayElementosSeleccionados;
}




