function loginAuth(){
	if (document.client.clientPass.value.toLowerCase() == "sapsys8"){
		alert("Thanks for logging in");
	}
	if (document.client.clientPass.value.toLowerCase() !== "sapsys8"){
		var sorry = "We're sorry, the user ID or password you have entered is not valid. Please check to make sure ";
			sorry += "that you have entered your correct user ID and password and that you do not have your caps ";
			sorry += "lock on or number lock engaged.  If you continue to have troubles, please contact Sapien Systems.";
		alert(sorry);
	}
}
