function checkLoginForm(objThis)
{
	if(!CheckCharLen('Intitution Code', objThis.InstCode, 1, 32))
		return false;
	if(!CheckCharLen('Password', objThis.Password, 1, 32))
		return false;
	return true;
}