<!--

var sta;

function Status(text)
{
	sta = text;
	Status2();
}

function Status2()
{
	window.status = sta;
	window.setTimeout("Status2()",0);
}

window.focus();
// Oben Links positionieren
window.moveTo(0,0);
 // Fenstergroesse gleich Aufloesung-Taskleiste setzen
window.resizeTo(screen.availWidth,screen.availHeight-30);
//function noSelect() {
//   return false;
//}
//document.onselectstart = noSelect;
//document.ondragstart = noSelect;

//-->