/**
 * FileName: myTools.js
 * Version: 1.0 
 * Creation Date: 2011/06/21 - 10:28
 * Description: Tools, Styles, Scripts for sections.
 * Author: hcamargo
 **/
 
var $dialog;
     
$(document).ready(function(){

	/* Initialize the showDialog */
	$dialog = $('#dialogbox').dialog({
       			autoOpen: false,
       			title: '',
	    			modal: true
	    		}); 
			
});

function validSession(frm) {
	if (frm.login.value == "") {
	  	showDialog("Alerta", "Debe de capturar el usuario", "Alert", undefined);
	  	frm.login.focus();
	  	return false;
		}
	  if (frm.userpasswd.value == "") {
	  	showDialog("Alerta", "Debe de capturar la contraseņa", "Alert", undefined);
	  	frm.userpasswd.focus();
	  	return false;
		}
//	$(frm).submit();
	return true;
	
}

function validSessionCur(frm) {
	if (frm.curp.value == "") {
	  	showDialog("Alerta", "Debe de capturar su CURP", "Alert", undefined);
	  	frm.curp.focus();
	  	return false;
		}
	  if (frm.userpasswd.value == "") {
	  	showDialog("Alerta", "Debe de capturar la contraseņa", "Alert", undefined);
	  	frm.userpasswd.focus();
	  	return false;
		}
//	$(frm).submit();
	return true;
	
}
