<!--
function makeIm() {
	NS4=(document.layers);
	IE4=(document.all);
	scaleWidth = true;
	scaleHeight = true;
	imSRC = "pics/wildemaus_bg.jpg";
	if (NS4) {
		origWidth = innerWidth;
		origHeight = innerHeight;
	}
	
	function reDo() {
		if (innerWidth != origWidth || innerHeight != origHeight) location.reload();
	}
	
	if (NS4) onresize = reDo;
	if (IE4) onresize = reDoIE;
	
	function reDoIE() {
		imBG.width = document.body.clientWidth;
		imBG.height = document.body.clientHeight;
	}
	
	winWid = (NS4) ? innerWidth : document.body.clientWidth;
	winHgt = (NS4) ? innerHeight : document.body.clientHeight;
	imStr = "<div id=elBGim"+" style='position:absolute;left:0;top:0;z-index:-1'>"+"<img name='imBG' border='0' src="+imSRC;
	
	if (scaleWidth) imStr += " width="+winWid;
	if (scaleHeight) imStr += " height="+winHgt;
	imStr += "></div>";
	document.write(imStr);
}

makeIm();

//-->
