<!--
function login() {
	// We do not want to send a plain-text version of the password out over 
	// the internet, so we will protect it using MD5 and a nonce.
	var md5_hash = calcMD5(calcMD5(document.login_form.password.value)+document.login_form.ott.value);
	document.login_form.md5hash.value = md5_hash;
	document.login_form.password.value = "";
	return true;
}
// -->
