	function scrolledOr() {
		var pos = 0;
		var iw, ih, max;
		if (document.body) {
			pos = document.body.scrollTop;
			iw = document.body.clientWidth;
			ih = document.body.clientHeight; 
			max = document.body.scrollHeight;
		}else if (window.innerHeight) {
			pos = window.pageYOffset;
			iw = window.innerWidth;
			ih = window.innerHeight;
			max = (document.height + 0) || 4000;
		} 
		if (pos > 0) {
			var x = get_x_position(document.getElementById("scroll_imagepositioner")) - 6;
			var subt = pos;
			if (subt > 31) {
				subt = 31;
			}
			var y = pos + ih - subt;
			if (y > max - 100) {
				y = max - 100;
			}
			set_position("scrollToTop", x, y);
			show_layer("scrollToTop");
		} else {
			hide_layer("scrollToTop");
		}
		window.setTimeout('scrolledOr();', 100);
	}
	window.setTimeout('scrolledOr();', 100);
	document.write('<DIV ID="scrollToTop" onClick="window.scrollTo(0,0); scrolledOr();" style="visibility: hidden; position: absolute; top: -50px; cursor: hand;"><IMG SRC="grafik/scroll_arrow.gif" WIDTH="13" HEIGH="11" ALT="G&aring; til toppen af siden"></DIV>');
