<!---

function is_msie() {
return (navigator.appName == "Microsoft Internet Explorer");
}

function Framing()
{ 
if (this.document == top.document || 
top.location.host != this.location.host) {
var pathprefix = location.protocol + '//' 
+ location.host
+ location.pathname.substring(0, 
location.pathname.lastIndexOf('/')+1);

var doctitle = document.title;
document.clear();
document.open("text/html");
document.writeln('<html>\n<head><title>'+doctitle+'</title></head>');
document.writeln('<frameset cols="778,*" frameborder="NO" border="0" framespacing="0">'+
'<frameset rows="104,*" frameborder="NO" border="0" framespacing="0" >'+
'<frame name="top" scrolling="NO" noresize src="../top.htm" >'+
'<frameset cols="165,*" frameborder="NO" border="0" framespacing="0">'+
'<frame name="nav" scrolling="NO" noresize src="../nav.htm">'+
'<frame name="inhalt" src="'+top.location.href+'">'+
'</frameset>'+
'</frameset>'+
'<frame name="right" scrolling="NO" noresize src="../right.htm">'+
'</frameset></html>');
document.close();
return true;
} 
return false;
}

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["inhalt"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}

function netscFraming() {
if (!is_msie()) Framing();
}

msieFraming();
// --->
<!---

function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT | Event.CLICK)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
document.onclick=hidestatus

// --->
