var sUrl = self.location.href;

function Schreib (){
    var Cont = "<html><head><title>Pro Prognos Bonn e.V.</title></head><script>function Update () {parent.unten.location = self.location.href;}</script>" +
    "<frameset rows='60,*' frameborder='NO' border='0' framespacing='0'> " +
		"<frame src='menu.html' name='oben' scrolling='NO' noresize>" +
                "<frame src='leer.html' name='unten' scrolling='auto' noresize>" +
    "</frameset>" +
	"</html>"


	document.clear();
	document.open();
	document.writeln(Cont);
	document.close();

	window.setTimeout('Update ()',1000);	
}

if (self == top)  {
	brName = navigator.appName;
	brVer = parseInt(navigator.appVersion);
	brSubVer = parseInt(navigator.appVersion.substring(2,3));
	var ie = document.all;
	var w3c = document.documentElement;


	VER = "";
	if (((brName == "Netscape") && (brVer >= 4 ) && (brSubVer >= 5 )) || (ie) || (w3c))  VER = "OK";
	else VER = "NOT_OK";  

	if (VER == "OK") 
		window.setTimeout('Schreib ()',1000);
}
