var currTitle = document.title

function setStatus(whereTo,lang) {
	if (whereTo == "" || whereTo == currTitle) {
		window.status = ""
	} else if (lang == "nl") {
		window.status = 'Naar "' + whereTo + '"'
	} else if (lang == "fr") {
		window.status = 'Vers "' + whereTo + '"'
	}
}
		
function resetStatus() {
		window.status = ""
}
