// JavaScript Document
//====================================================================================================
//	File Name		:	twoweek.js
//----------------------------------------------------------------------------------------------------
//	Purpose			:	Client side validation in JavaScript.

//
//====================================================================================================

//====================================================================================================
//	Function Name	:	Form_Submit()
//	Purpose			:	This function will executed when user submits a form. It checks validity of
//						every field in the form.
//
//	Parameters		:	frm  - form name
//	Return			:	true or false

//----------------------------------------------------------------------------------------------------

function Form_Submit(frm)
{
	
	with(frm)
	{	
				
		if(!IsEmpty(username,L_User_Name_Empty))
		{
			
			return false;
		}
		if(!IsEmpty(password,L_Password_Empty))
		{
			
			return false;
		}
	}
}

function Forgot_Click()
{
	with(document.frmLogin)
	{
	Action.value="Forgot_Password";
	//alert(Action.value);
	submit();
	//return true;
	}
	
}
