//JavaScript Funktion zum Verhindern der Anzeige einer Seite ausserhalb des Frameset
//SysDesign Homepage

function in_frame(FrameURL, InhURL)
{
	if ( top.location == location )
	{
	  if ( !InhURL )
		  InhURL = self.document.location.href
	  //alert( '*** in_frame ***\n  Frame=' + FrameURL + "\n    Inh=" + InhURL );
		top.location = FrameURL + "?" + InhURL;
		//top.location.href=URL;
	}
}
