// JavaScript Document

function goLocation ( school )
{
	switch ( school )
	{
		case "ark":
			location.href="/index.php?page=locationsDetail&id=11";
		break;
		case "kompass":
			location.href="/index.php?page=locationsDetail&id=12";
		break;
		case "regenboog":
			location.href="/index.php?page=locationsDetail&id=9";
		break;
		case "bijbel":
			location.href="/index.php?page=locationsDetail&id=13";
		break;
	}
}

