<!--
var AlterBrowser=0;

function StartRahmen()
{
  if (AlterBrowser == 1) {
    document.write('<table border="3" bgcolor=#C0C0C0><th border="0">');
  }	
}
function EndeRahmen()
{
  if (AlterBrowser == 1) {
    document.write("</th></table>");
  }	
}
function MittelRahmen()
{
  if (AlterBrowser == 1) {
    document.write("</th><th>");
  }	
}
function Arrange()
{
  AlterBrowser = 1;

  //document.writeln(this.self.location);
  //document.writeln(this.self.parent.location);
  //document.writeln(this.self.screenX);
  //document.writeln(this.self.screenY);

  if (screen.width > 500) {  // Prfe, 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";
        }
      }
    }
  }
  }


  if (document.getElementById) {  // Prfe, ob Browser getElementbyId kennt. Ja => Neuer Browser
    AlterBrowser = 0;
    var ZK=new String(navigator.appVersion);
	if (ZK.search) {
  	  if (ZK.search("MSIE 5.0") >= 0) {
        AlterBrowser = 1;
	  }
	}
  }

}


//-->
