<!--
/* Office Coaching Script */
/* Version 1.0 */
/* Author: R.A Herrebrugh */
/* Script tested on IE6 SP2, Firefox 2.0, Opera 9.20 */
	
	function redirect(lokatie) {
		if (lokatie != "") { // if no location found just let the browser handle it
			window.location.href = lokatie								
		}		
	}
	
	function clearSearch() {
	    document.getElementById("q").value = ""
	}
	
	
	function doSearch() {
	    document.getElementById("q").value = document.getElementById("web-site").value + " " + document.getElementById("q").value	    
	}
//-->