var t_pass

// A password was entered, check it and if valid go to the JGSChoir members login page
function choirpass() {

	t_pass = document.ChoirPass.CP.value;
	if (t_pass=='gclef') {
		window.location = '/ssl/index.php';
	} else {
		window.location.reload();
	}
	return false;
}﻿
