function fillmain()
{
	inhalt=parent.Inhalt.location.href;
	wo = inhalt.lastIndexOf("/");
	inhalt = inhalt.substring(wo+1,inhalt.length);
	if (inhalt == "start.htm")
	{
		passedName = location.search;
		wo = passedName.lastIndexOf("?");
		passedName=passedName.substring(wo+1,passedName.length);
		l=passedName.length;
		wo = passedName.lastIndexOf("/");
		passedName = passedName.substring(wo+1,l);
		if (l > 0)
		{
			if (passedName != "start.htm"){
				parent.Inhalt.location.href="http://"+passedName;	
			}
		}
	}
}
