<!---

function is_msie() {
return true;
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 border="false" frameSpacing="0" rows="90,*" frameBorder="0">'+
'<frame name=Banner src="index.ASP?WCI=Banner&amp;WCU=" noresize="noresize" scrolling="no" target="contents">'+
'<frameset border="0" frameSpacing="0" rows="*" frameBorder="no" cols="210,*">'+
'<frame name="leftFrame" src="index.ASP?WCI=Artikelgruppen&amp;WCU=" noresize="noresize">'+
'<frame name="contents" src="'+top.location.href+'" noresize="noresize">'+
'</frameset>'+
'</frameset></html>');
document.close();
return true;
} 
return false;
}

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["contents"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}

function netscFraming() {
if (!is_msie()) Framing();
}

msieFraming();
