//========================================
// CMS Intersim AG
// Include Modul Faq
// Version 1.0
// 14.05.2002
//========================================
// Revision History
// ----------------
// 1.0	Grundversion
//========================================
// Übergabeparameter
// ----------------
// sParam = Parameter für den Aufruf der Folgedatei
//========================================
function ChangeFaqSec(sParam) { 
  var SelIndex=window.document.FaqForm.cboFaqSec.options.selectedIndex;
  if ( SelIndex != -1 ) {
    var sFaqSec=window.document.FaqForm.cboFaqSec.options[SelIndex].value;
    document.location.href = "index.asp?" + sParam + "&FaqSec=" + sFaqSec;
  }
}

