/*
	Project Name		: Whitehorse-solutions.com
   	Program name		: admin_login.js
 	Program function	: Validation for admin_login page
	Author				: Shalini B
	Developed by	   	: Colbridge Web Logics - www.colbridge.com 
 	Created Date  		: 08 Oct 2005
 	
	Update History
    -------------------------------------------------------------------
    Date       		By 					short desc. of what updated 
   ---------------------------------------------------------------------
*/
function validate(frm){
	if(isEmpty(frm.frm_username.value)){
		alert("Please enter User name.");
		frm.frm_username.focus();
		return false;
	}
	if(isEmpty(frm.frm_password.value)){
		alert("Please enter Password.");
		frm.frm_password.focus();
		return false;
	}
}