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 rows="73,594*" frameborder="NO" border="0" framespacing="0" cols="*">'+'<frameset cols="541,*" frameborder="NO" border="0" framespacing="0" rows="*">'+
'<frame name="Logo" scrolling="NO" noresize src="/shop/BannerShop.html" >'+
'<frame name="bwk" scrolling="AUTO" noresize src="/shop/shopstart1.htm">'+
'</frameset>'+
'<frameset cols="178,*" frameborder="NO" border="0" framespacing="0" rows="*">'+
'<frame name="Navi1" scrolling="NO" noresize src="/shop/produkte.html">'+
'<frameset rows="75,537*" frameborder="NO" border="0" framespacing="0" cols="*">'+
'<frameset rows="46,26" frameborder="NO" border="0" framespacing="0" cols="*">'+
'<frame name="topFrame" scrolling="NO" noresize src="/shop/home/index.html">'+
'<frameset cols="446,378*" frameborder="NO" border="0" framespacing="0" rows="*">'+
'<frame name="header" scrolling="NO" noresize src="/shop/shopstart1.htm">'+
'<frame name="suchkl" scrolling="NO" noresize src="/shop/Suche/sucheklein.htm">'+
'</frameset>'+
'</frameset>'+
'<frame noresize src="'+top.location.href+'" name=Haupttext >'+
'</frameset>'+
'</frameset>'+
'</frameset></html>');
document.close();
return true;
} 
return false;
}

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["Haupttext"].location.href = '+
'"'+top.location.href+'";',10);
}
}
}

function netscFraming() {
if (!is_msie()) Framing();
}

msieFraming();
