<!--

function page(pg){
	switch(pg){
		case "vol":
			location.href="volunteers.php";
		break;
		case "parents":
			location.href="parents.php";
		break;
		case "security":
			location.href="security.php";
		break;
		case "map":
			location.href="map.php";
		break;
		case "reno":
			window.open("http://therenovationchurch.com/");
		break;
		case "vollogout":
			location.href="logout.php";
		break;
		case "sg":
			location.href="volunteers.php?cat=sg";
		break;
		case "rt":
			location.href="volunteers.php?cat=rg";
		break;
		case "dt":
			location.href="volunteers.php?cat=dr";
		break;
		case "wt":
			location.href="volunteers.php?cat=wr";
		break;
	}
return true;
}
-->