function validarRegistro() {
	if ($('nombre').value=='') {
		alert('Debe introducir su nombre');
		$('nombre').focus();
		return false;
	}
	if ($('calle').value=='') {
		alert('Debe introducir su dirección');
		$('calle').focus();
		return false;
	}
	if ($('poblacion').value=='') {
		alert('Debe introducir su población');
		$('poblacion').focus();
		return false;
	}
	if ($('email').value=='') {
		alert('Debe introducir el correo electrónico');
		$('email').focus();
		return false;
	}
	if (!validate_email('email','Debe introducir un correo electrónico válido')) {
		return false;
	}
	if ($('clave').value=='') {
		alert('Debe introducir su contraseña');
		$('clave').focus();
		return false;
	}
	
	
	return true;
}

function validate_email(field,alerttxt) {
	tm=document.getElementById(field);
	apos=tm.value.indexOf("@");
	dotpos=tm.value.lastIndexOf(".");
	if (apos<1||dotpos-apos<2) 
		{alert(alerttxt);return false;}
	else {return true;}
}

function gastos_envio(peso) {
	if ($('provincia')!==null) {
		var provincia=$('provincia').value;
	}
	var pais=$('pais').value;
	new Ajax.Updater('gastos_envio','gastos_envio.php?pais='+pais+'&provincia='+provincia+'&peso='+peso);
}
