//popup signup window

function Start(page) {
OpenWin = this.open(page, "Signup", "status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=630,height=570");
}

function Start_PassRem(page)
{
	OpenWin = this.open(page, "Reminder", "status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no,width=480,height=300");
}

//toggles layer visibility on and off

function show_balloon(id) {
	document.getElementById(id).style.visibility = "visible";
}
function hide_balloon(id) {
	document.getElementById(id).style.visibility = "hidden";
}
