function pagos_Validator(theForm){
  	if (theForm.item_name.value == ""){
		alert("El campo \"Descripcion\" es obligatorio.");
    		theForm.item_name.focus();
		return (false);
  	}

  	if (theForm.amount.value == ""){
    		alert("El campo \"Monto\" es obligatorio.");
    		theForm.telefono.focus();
    		return (false);
  	}

}

