//alert("GEHT!");
function popup(url,breite,hoehe)
{
	day = new Date();
	id = day.getTime();
	links = screen.width/2-(breite/2);
	oben = screen.height/2-(hoehe/2);
	eval("page" + id + " = window.open(url, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=' + breite + ',height=' + hoehe + ',left=' + links + ',top=' + oben);");
}

/*var sucheingabefeld	=	document.getElementById('sucheingabefeld');
sucheingabefeld.onclick	=	function()
{
	this.value='""';
}

sucheingabefeld.onblur	=	function()
{
	if (this.value=='')
	{
		this.value='Suchebegriff eingeben';
	}
}*/

function dialog(ziellink)
{
	var eingabe, ziellink;
	eingabe=confirm("Wirklich löschen?");
	if(eingabe==true)
	{
		location.href=ziellink;
	}
}