<!--
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="170,*" frameborder="NO" border="0" framespacing="0">'+
'<frame src="/fileadmin/feinmetall/frameset_eng/links.htm" name="links" scrolling="AUTO" noresize id="links">'+
'<frameset rows="170,*" frameborder="NO" border="0" framespacing="0">'+
'<frame src="/fileadmin/feinmetall/frameset_eng/oben.htm" name="oben" scrolling="NO" noresize id="oben">'+
'<frame src="'+top.location.href+'" name="main" noresize id="main">'+
'</frameset></html>');
document.close();
return true;
} 
return false;
}
function msieFraming() {
if (Framing()) {
window.setTimeout('top.frames["main"].location.href = '+'"'+top.location.href+'";',10);
}
}

function netscFraming() {
if (!is_msie()) Framing();
}

msieFraming();
//-->

