<!--
var window_on = 0
function neues_fenster (name)
{
	var f_name="PopWin";
	var width = 500;
	var height = 540;
	var f_eigenschaft = "toolbar=0,location=0,menubar=0,directories=0,status=0,resizeable=0,scrollbars=0,height="+height+",width="+width;
	if (window_on == 0)
	{
		win = window.open ('',f_name,f_eigenschaft)
		window_on = 1;
	}
	else
	{
		if (win.closed)
		{
			win = window.open('',f_name,f_eigenschaft);
			window_on = 1;
		}
	
	}
	if (win.focus)
	{
		win.focus;
	}
	if (win.moveTo)
	{
		win.moveTo(240,0);
	}
win.location.href = name;	
}
//-->
