var ZUSATZDOMAIN = "autorenimnetz.de";
var HAUPTDOMAIN = "marcelklee.de"; 

var DOMAIN = "";
if((window.location.host.toLowerCase()==ZUSATZDOMAIN.toLowerCase())| 
(window.location.host.toLowerCase()=="www."+ZUSATZDOMAIN.toLowerCase()))
{DOMAIN=ZUSATZDOMAIN;};
if((window.location.host.toLowerCase()==HAUPTDOMAIN.toLowerCase())| 
(window.location.host.toLowerCase()=="www."+HAUPTDOMAIN.toLowerCase()))
{DOMAIN=HAUPTDOMAIN;};
if(DOMAIN!="")
{
document.title=document.title+' auf '+DOMAIN;
document.writeln('<frameset cols="100%,*">');
document.writeln('<frame src="'+DOMAIN.substring(0,DOMAIN.indexOf("."))+'.htm" name="Navigation">');
document.writeln('</frameset>');
};
