function PopItOnLoad(datei,breit,hoch) {
	window.setTimeout('GetOn();',250);
	window.setTimeout('GetOff();',1000);
	eval("window.setTimeout(\"PopIt('"+datei+"','"+breit+"','"+hoch+"');\",1050);");
};

function GetOn() {
	window.news.src='../img/nav_news_on.gif';
};

function GetOff() {
	window.news.src='../img/nav_news_off.gif';
};

function PopIt(datei,breit,hoch) {
	Attrib='height='+hoch+',width='+breit+',scrollbars=yes,resizable=yes';
	FensterName="NEWS";

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

