
	function setDutch() {
		
		var url = document.location.href;
		var url2 = url.replace("f.shtml", "n.shtml");
		var urlNew = url2.replace("fr.shtml", "nl.shtml");
		//document.write(url2);
		window.location=urlNew;
		
	}
	
	function setFrench() {
		
		var url = document.location.href;
		var url2 = url.replace("n.shtml", "f.shtml");
		var urlNew = url2.replace("nl.shtml", "fr.shtml");
		//document.write(url2);
		document.location.href = urlNew;
		
	}
	
