<!--

function Arrange()
{
    if (screen.width > 500) {  // Prüfe, ob mobiler Browser

      if (this.self.parent) {
        var Loc=new String(this.self.parent.location);
        if (Loc.search) {
          if (Loc.search(this.self.location) == 0) {
	    if (this.self.screenY < 200 ) {
	     window.location = "index.htm";
	    }
          }
        }
      }
    }
}

//-->

