function pwReminder(email)
{
	var email;
	while (email.length == 0)
	{
		email = prompt('Enter your email to receive instructions on resetting your password','');
	}
	window.open('/cgi-bin/user/pwReminder.pl?email=' + email,'pwReminder', "height=300,width=400");
	window.focus;
}
