//-----------------------------------------------------------------------------------------------------------------------------
// Navigationsfunktionen
//-----------------------------------------------------------------------------------------------------------------------------
  function confirmFolder(LINK,TEXT)
  {
    Check = confirm(TEXT);
    if(Check == true)
    {
      self.location.href=(LINK);
    }
  }
  //---------------------------------------------------------------------------------------------------------------------------
  function surfto(countrylang) {
    var myindex=countrylang.clang.selectedIndex
    if (countrylang.clang.options[myindex].value != "0") {
      location=countrylang.clang.options[myindex].value;
    }
  }

  //---------------------------------------------------------------------------------------------------------------------------
  function centerPopUp( url, name, width, height, scrollbars ) {
	  if( scrollbars == null ) { scrollbars = "0" }
    str  = "";
    str += "resizable=1,";
    str += "scrollbars=" + scrollbars + ",";
    str += "width=" + width + ",";
    str += "height=" + height + ",";
	  if ( window.screen ) {
      var ah = screen.availHeight - 30;
      var aw = screen.availWidth - 10;
      var xc = ( aw - width ) / 2;
      var yc = ( ah - height ) / 2;
      str += ",left=" + xc + ",screenX=" + xc;
      str += ",top=" + yc + ",screenY=" + yc;
    }
    window.open( url, name, str );
  }

  //---------------------------------------------------------------------------------------------------------------------------
  function WindowTop() {
    self.focus();
    window.setTimeout("WindowTop()",100);
  }

//-----------------------------------------------------------------------------------------------------------------------------
