function zentrier() {
	var obj;
	var x,y;
	//NS6
	if ((document.getElementById) && (navigator.appName == "Netscape")) {
		obj = document.getElementById("picture");
		x = Math.round(window.innerWidth/2 - parseInt(obj.style.width)/2);
		//y = Math.round(window.innerHeight/2 - parseInt(obj.style.height)/2);
		breite = window.innerWidth;
		if (breite > 900) {
			obj.style.left = parseInt(obj.style.left) + x + "px";
		}
		//obj.style.top = parseInt(obj.style.top) + y + "px";
		obj.style.visibility = "visible";
	}
	// NS4
	else if (document.layers) {
		obj = document.picture;
		x = Math.round((window.innerWidth/2)-(obj.clip.height/2));
		//y = Math.round((window.innerHeight/2)-(obj.clip.width/2));
		breite = window.innerWidth;
		if (breite > 900) {
			obj.moveTo(x,0);
		}
		obj.visibility = "visible";
	}
	//IE
	else {
		obj = document.all.picture;
		x = Math.round(document.body.clientWidth/2-obj.clientWidth/2);
		//y = Math.round(document.body.clientHeight/2-obj.clientHeight/2);
		breite = document.body.offsetWidth;
		if (breite > 850) {
			obj.style.pixelLeft = x;
		}
		//obj.style.pixelTop = y;
		obj.style.visibility = "visible";
	}
}
function handleResize() {
	location.reload();
	return false;
}
if (document.layers) {
	window.captureEvents(Event.RESIZE);
	window.onresize = handleResize;
}
function load() {
	var url;
	var suchbegriff;
	suchbegriff = document.getElementById("sucheingabe").value;
	url = '/relaunch/suchergebnis.php?we_lv_search_0='+suchbegriff+'&we_fom_search=1';
	window.location.href = url;
}

