//----------------------------------------------------------------------------------------------------
//	Module Name:- Portfolio
//	File Name  :- portfolio.js
//	Create Date:- 05-JUN-2009
//	Intially Create By :- 
//	Update History:
//----------------------------------------------------------------------------------------------------
function login_validate()
{
	with (document.frm_login)
	{
		if (isEmpty(trim(txt_login.value)))
		{
			alert("Please enter Login Id.");
			txt_login.focus();
			txt_login.select();
			return false;
		}
		
		if (isEmpty(trim(txt_password.value)))
		{
			alert("Please enter Password.");
			txt_password.focus();
			txt_password.select();
			return false;			
		}
		
		if(isEmpty(trim(trim(txt_code.value))))
		{
			alert("Please enter Image Code.");
			txt_code.select();
			txt_code.focus();
			return false;
		}

	}
	return true;
}

