/* javascript-functies */
/* (c)2005-8 arthur van zuylen, www.2parts.nl */

/* ververs pagina vanuit selectbox */
function showPage(keuze) {
	with(keuze) {
		destination = options[selectedIndex].value;
		if(destination != "") {
			location=destination;
		}	
	}
}