Information = null;

function NeuesFenster(vDokument, vFenster, vBreite, vHoehe, vScrollies)
{
	var myString = "width=" + vBreite + ",height=" + vHoehe + ",menubar=no,locationbar=no,scrollbars=" + vScrollies+ ",resizable=1";	
	Fenster = window.open(vDokument,vFenster,myString);
	
	if(Fenster != null)
	{
		if(Fenster.opener == null)
		{
			Fenster.opener = self;
			Fenster.moveTo((screen.width - vBreite)/2,(screen.height - vHoehe)/2);
			Fenster.focus();
		}
		else
		{
			Fenster.moveTo((screen.width - vBreite)/2,(screen.height - vHoehe)/2);
			Fenster.focus();
		}
	}
}