function BW(BildID, Bildobjekt)
{
	m01 = new Image();

	m01.src = "/pics/" + Bildobjekt + ".gif";

	window.document.images[BildID].src = m01.src;

    return true;
}

function popup(URL, name, width, height)
{
	var left = (screen.width/2) - width/2;
	var top = (screen.height/2) - height/2;

	fenster = window.open(URL, name,"width=" + width + ",height=" + height + ",left=" + left + ",top=" + top + ", scrollbars=no");
	fenster.focus();
}