function navi(urlpart){
	if(window.hsh && hsh.replace('#', '') == urlpart) return;
	window.location.hash = urlpart;
}

var isMSIE = navigator.userAgent.toLowerCase().indexOf('msie') != -1;

if(! window.addEventListener){
	window.addEventListener = function(event, fn){
		window.attachEvent('on' + event, fn);
	}
}
window.addEventListener('beforeunload', function(){
	var fl = document.getElementById('fl');
	fl.parentNode.removeChild(fl);
	fl = null;
}, true);