function sendmail(f,b){


	if(f.nombres.value==""){
		alert("Por favor ingrese sus Nombres");
		f.nombres.focus();
		return
	}
	
	if(f.apellidos.value==""){
		alert("Por favor ingrese sus Apellidos");
		f.apellidos.focus();
		return
	}
	
	if(f.direccion.value==""){
		alert("Por favor ingrese su Direccion");
		f.direccion.focus();
		return
	}
	
	if(f.ciudad.value==""){
		alert("Por favor ingrese su Ciudad");
		f.ciudad.focus();
		return
	}

	if(f.mail.value==""){
		alert("Por favor ingrese su Mail");
		f.mail.focus();
		return
	}

	 if(f.mail.value!=""){
		if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(f.mail.value)){
		 } else {
		  alert("La dirección de email "+f.mail.value+" es incorrecta.");
		  f.mail.focus();
		  return ;
		 }
	   }
	   
	if(f.pago.options[f.pago.selectedIndex].value=="0"){
		alert("Por favor seleccione una forma de pago");
		f.pago.focus();
		return
	}
	
	if(f.fono.value==""){
		alert("Por favor ingrese su fono");
		f.fono.focus();
		return
	}


	
	
		b.disabled=true;

FAjax('enviamail.php','divret','ciudad='+f.ciudad.value+'&direccion='+f.direccion.value+'&nombres='+f.nombres.value+'&apellidos='+f.apellidos.value+'&mail='+f.mail.value+'&fono='+f.fono.value+'&comentario='+f.comentario.value+'&pago='+f.pago.options[f.pago.selectedIndex].value+'&pagotext='+f.pago.options[f.pago.selectedIndex].text+'&curso='+f.curso.value+'&precio='+f.precio.value,'POST');

f.nombres.value="";
f.apellidos.value="";
f.fono.value="";
f.direccion.value="";
f.ciudad.value="";
f.mail.value="";
f.comentario.value="";
f.pago.options[0].selected=true;

}