function is_msie() 
{
	return (navigator.appName == "Microsoft Internet Explorer");
}

function Framing()
{ 
	if (this.document == top.document || top.location.host != this.location.host) 
	{
		if("www.amroc.de"!=location.host)
			alert("Menü von www.amroc.de");
		
		var pathprefix = location.protocol 
							+ '//' 		
							+ location.host
							+ location.pathname.substring(0, location.pathname.lastIndexOf('/')+1);					
		//alert(pathprefix);
		
		var doctitle = document.title;
		//alert(doctitle);
				
		document.clear();
		document.open("text/html");
		
		document.writeln('<html>\n<head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">' + 
					'<title>' + doctitle + '</title></head>');
					
		document.writeln('<frameset border=\"0\" frameborder=\"0\" cols=\"135,*\">' +
					'<frame src=\"http://www.amroc.de/pages/de/menu_frame.html\" name=\"navmenu\" scrolling=\"no\" noresize frameborder=\"0\" marginheight=\"0\" marginwidth=\"0\">' +
					'<frameset border=\"0\" rows=\"83,*\" frameborder=\"0\" framespacing=\"0\">' +
					'<frame src=\"http://www.amroc.de/pages/de/navigation.html\" name=\"navigator\" scrolling=\"no\" noresize frameborder=\"no\" bordercolor=\"#FFFFFF\" framespacing=\"0\" valign=\"top\" marginheight=\"0\" marginwidth=\"0\">' + 
					'<frame src=\"' + top.location.href + '\" name=\"main\" noresize frameborder=\"NO\" framespacing=\"0\" valign=\"top\" marginheight=\"0\" marginwidth=\"0\" scrolling=\"auto\">' +
					'</frameset>');					
					
		document.writeln('</html>');					
		
		document.close();
		
		return true;
	} 
	return false;
}


function msieFraming() 
{
	if (is_msie()) 
	{
		if (Framing()) 
		{
			window.setTimeout( 'top.frames["main"].location.href = "' + top.location.href + '";' ,5 );
		}
	}
}

function netscFraming() 
{
	if (!is_msie()) Framing();
}

msieFraming();
