// fix old permlink to smart-on-tour.de/#2004
function fix_links() {
	if (window.location.hash) {
		if (window.location.hash == "#2004") {
			window.location.href = "nordkap-april-2004.html";
		}
	}
}

// initialize
//window.onload = function () {
	fix_links();
//}

//window.onpageshow = function (evt) {
//	if (evt.persisted) window.onload();
//}

