function PopIt(datei,FensterName)
	{
	breit=450
	hoch=470
	
	Attrib='height='+hoch+',width='+breit+',scrollbars=no';

	Fenster=window.open(datei,FensterName,Attrib);
	x=screen.availWidth/2-(breit/2);
	y=screen.availHeight/2-(hoch/2);
	Fenster.moveTo(x,y);
};

function Popspot(datei,FensterName)
	{
	breit=400
	hoch=100
	
	Attrib='height='+hoch+',width='+breit+',scrollbars=no';

	Fenster=window.open(datei,FensterName,Attrib);
	x=screen.availWidth/2-(breit/2);
	y=screen.availHeight/2-(hoch/2);
	Fenster.moveTo(x,y);
};

function PopPan(datei,FensterName)
	{
	breit=460
	hoch=460
	
	Attrib='height='+hoch+',width='+breit+',scrollbars=no';

	Fenster=window.open(datei,FensterName,Attrib);
	x=screen.availWidth/2-(breit/2);
	y=screen.availHeight/2-(hoch/2);
	Fenster.moveTo(x,y);
	fenster.focus();
};

