/**********************************************************
	Project Name			: ProactiveFamilySolutions
	Site URL				: http://www.proactivefamilysolutions.com
	Project Phase			: User Phase
	Module Name				: Login Form JS file
	Database Name			: proactiv_proact
	Page Name				: login.js
	Purpose of this page	: This page is used for validation of Login Form.
	Last Modified By		: Srinivasn.R.R
	Last Modified Date		: 10 July 2008
	Last Modified Purpose	: For writting Code Comments
 *********************************************************/
function checkform(f)
	{
		/*********************** If username is equal to null validation starts here **********************/
		if (f.UsrName.value == "") 
		{
		alert("Please enter your Username");
		f.UsrName.focus();
		return (false);
		}
		/*********************** If Password is equal to null validation starts here **********************/
		if (f.chvUsrPwd.value == "") 
		{
		alert("Please enter your Password.");
		f.chvUsrPwd.focus();
		return (false);
			}
		
	}

