function check(theForm) {
	if (theForm.username.value != "" && theForm.password.value != "") {	
		return true;
	}
	else {
		alert("Please enter your User ID and Password");
		return false;
	}
}