
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>The PC-Tuning Page</title></head>');




document.writeln('<frameset rows="115,*" border=0 frameBorder=0 frameSpacing=0 frameBorder=NO>'+
 		 '<frameset cols="200,25,58%,*"  border=0 frameBorder=0 frameSpacing=0>'+
 		 '<frame name="logo" src="logo.htm" scrolling="no" noresize target="_self" >'+
 		 '<frame name="top_spacer1" src="top_spacer1.htm" scrolling="no" noresize >'+
 		 '<frame name="menueoben" scrolling="no" src="menueoben.htm" noresize>'+
 		 '<frame name="oben3" scrolling="no" noresize src="obenabschluss.htm">'+
 		 '</frameset>'+
 		 '<frameset cols="200,83*"  border=0 frameBorder=0 frameSpacing=0>'+
		 '<frameset rows="280,30*,38*">'+
 		 '<frame src="menue.php" name="menue" noresize scrolling="no">'+
 		 '<frame name="menuespacer" src="menuespace.htm" scrolling="no" noresize>'+
 		 '<frame name="menuebottum" scrolling="no" src="menuebottum.htm">'+
 		 '</frameset>'+
		 '<frame src="news_home.htm" name="main" scrolling="auto">'+
 		 '</frameset>'+
 		 '<noframes></html>');
document.close();


return true;
} 
return false;
}

function msieFraming() {
if (is_msie()) {
if (Framing()) {
window.setTimeout('top.frames["main"].location.href = '+
'"'+top.location.href+'";',10);
}}}
function netscFraming() {
if (!is_msie()) Framing();
}
msieFraming();
// --->

