	
if (!document.layers) {
	ImageOn = new Array();
	ImageOff = new Array();
}

function preload() {
	if (!document.layers) {
		for(i=0;i<document.images.length;i++) {
			if ((document.images[i].src.indexOf('/bt_') != -1 || document.images[i].src.indexOf('/but_') != -1)  && (document.images[i].src.indexOf('_r.gif') == -1 && document.images[i].src.indexOf('_aktiv.gif') == -1&& document.images[i].src.indexOf('but_h_') == -1)) {
				imgname = document.images[i].src.substr(0,document.images[i].src.indexOf('.gif'))
				ImageOff[imgname] = new Image();
				ImageOff[imgname].src = document.images[i].src;
				ImageOff[imgname].name= imgname;
				ImageOn[imgname] = new Image();
				ImageOn[imgname].src = imgname+'_roll.gif';
				ImageOn[imgname].name= imgname;
				document.images[i].name = imgname;
				document.images[i].onmouseover = mmover;
				document.images[i].onmouseout = mmout;
			} 
		}
	}
	if (window.onPreload) {
		eval(onPreload);
	}
}

function mmover() {
	mover(this)
}

function mmout() {
	mout(this)
}

function mover(imageobject) {
	imgname = imageobject.src.substr(0,imageobject.src.indexOf('.gif'))
	if (ImageOn[imgname]) {
		imageobject.src = ImageOn[imgname].src;
	}
}

function mout(imageobject) {
	imgname = imageobject.src.substr(0,imageobject.src.indexOf('_roll.gif'))
	if (ImageOff[imgname]) {
		imageobject.src = ImageOff[imgname].src;
	}
}

if (!document.layers) {
	onload = preload;
}


	function showStatus(sShow) {
		window.defaultStatus = sShow;
		window.status = sShow;
		return true;
	}

	function OpenWindow(sUrl) {
		PrintWindow = window.open(sUrl,"PrintWindow","status=no,scrollbars=no,location=no,menubar=no,resizable=no,toolbar=no,width=380,height=358");
		PrintWindow.focus();
	}
	


