// AutoDirector login JavaScript

// ________________________________________________________
// check login information
function checkLogin() {

	errorsfound=false;
	form=document.autodirector;
	var email=form.email.value;

	if (!errorsfound && verify_email(email)=="") error("email", "Please enter a valid email address.");

	if (!errorsfound && typeof(rv) == 'undefined' && form.password.value!="") errorsfound=!confirm("You may evaluate AutoDirector for 30 days.\nAfter this time, you must purchase a licence\nor remove the application from your system.\n\nPlease click OK if you agree to these terms.");

	if (!errorsfound && form.password.value=="") errorsfound=!confirm("Leaving your password blank will send a reminder\nof your password to "+email+".\n\nAre you sure you want to do this?");

	return !errorsfound;
}
