bullet = new Image();
bullet.src = "grafiken/bullet.gif";
bulletleer = new Image();
bulletleer.src = "grafiken/bulletleer.gif";

function bildwechsel(Stelle,Index,Bildobjekt)
{
	if (document.getElementById(Stelle).className != "rechts gewaehlt")
	{
		window.document.images[Index].src = Bildobjekt.src;
	}
}

function neuesFenster(URL, breite, hoehe, resiz)
{
	var X = (screen.availWidth / 2) - (breite / 2);
	var Y = (screen.availHeight / 2) - (hoehe / 2);
	if (resiz == 'no')
	{
		window.open(URL, "", "resizable=no, menubar=no, scrollbars=yes, status=no, width=" + breite + ", height=" + hoehe + ", left=" + X + ", top=" + Y);
	}
	else
	{
		window.open(URL, "", "resizable=yes, menubar=no, scrollbars=yes, status=no, width=" + breite + ", height=" + hoehe + ", left=" + X + ", top=" + Y);
	}
}
