

function CheckLogin()
{

if (document.loginForm.username.value.length <= 0 ) {
		alert("Please enter your username");
		return false;
}

if (document.loginForm.password.value.length <= 0 ) {
		alert("Please enter your password");
		return false;
}

}

