/*
	Ruimte om javascript in te zetten die gebruikt wordt voor de website
*/
	if (!window.XMLHttpRequest) {
		alert('Uw browser is te oud voor deze website, u wordt nu doorgeschakeld naar een site waar u uw browser kunt updaten.');
		if (navigator.appVersion.indexOf("Win")!=-1)
			window.location="http://www.microsoft.com/windows/internet-explorer/default.aspx";
		if (navigator.appVersion.indexOf("Mac")!=-1) 
			window.location="http://www.getfirefox.com";
		if (navigator.appVersion.indexOf("X11")!=-1)
			window.location="http://www.getfirefox.com";
		if (navigator.appVersion.indexOf("Linux")!=-1)
			window.location="http://www.getfirefox.com";
	} 
	
	function disableSelection(target){
		if (typeof target.onselectstart!="undefined") //IE route
			target.onselectstart=function(){return false}
		else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
			target.style.MozUserSelect="none"
		else //All other route (ie: Opera)
			target.onmousedown=function(){return false}
		target.style.cursor = "default"
	}