// Login

function chkLogin(){
	if(document.formLogin.username.value=='' || document.formLogin.password.value==''){
		alert("Please enter your User Name and Password.");
		return false;
	}
	return true;
}
