//========================================
// CMS Intersim AG
// Include Modul Blog
// Version 2.8
// 01.12.2005
//========================================
// Revision History
// ----------------
// 1.0	Grundversion
//========================================
// Übergabeparameter
// ----------------
// sParam = Parameter für den Aufruf der Folgedatei
//========================================
function ChangeBlogTopic(sParam) { 
  var SelIndex=window.document.BlogForm.cboBlogTopic.options.selectedIndex;
  if ( SelIndex != -1 ) {
    var sTopic=window.document.BlogForm.cboBlogTopic.options[SelIndex].value;
    document.location.href = "index.asp?" + sParam + "&Section=" + sTopic;
  }
}
function CallView(sParam) {
	document.location.href="index.asp?" + sParam
}
