function ajaxload(seite,unterseite,ercas_param) {  
  seite1 = seite;
  unterseite1 = unterseite;
  seite1a = "content_"+seite1;
  ercas_param1 = ercas_param;
   
  document.getElementById(seite1a).innerHTML = '<img style=";margin-left:300px;margin-top:200px;" src="../img/ajax-loader.gif" alt="" title="" />';
 
  if (document.getElementById("inhalt_wrap")!=null) {
    document.getElementById("inhalt_wrap").style.overflow="hidden"; 
    document.getElementById("inhalt_wrap").style.display="none"; 
  }

  if (document.getElementById("inhalt_wrap_small")!=null) {
    document.getElementById("inhalt_wrap_small").style.overflow="hidden"; 
    document.getElementById("inhalt_wrap_small").style.display="none"; 
  }
  
  if (document.getElementById("inhalt_wrap_no_fancy")!=null) {
    document.getElementById("inhalt_wrap_no_fancy").style.overflow="hidden"; 
    document.getElementById("inhalt_wrap_no_fancy").style.display="none"; 
  }

  if (document.getElementById("inhalt")!=null) {
    document.getElementById("inhalt").style.display="none"; 
  } 

  if (document.getElementById("inhalt_slider")!=null) {  
    document.getElementById("inhalt_slider").style.display="none"; 
  }

  window.setTimeout("LoadAjax(seite1,unterseite1,ercas_param1)", 1000);
}

function LoadAjax(seite,unterseite,ercas_param) {
  	  pageTracker._trackPageview("/"+seite+"/"+unterseite);
      $.ajax({
               url: "ajax_content_modul.php?s="+unterseite+"&ercas="+ercas_param,
               dataType: "html",
               success: function(html){
                   $("#content_"+seite).html(html);
               }
          });
}

var active="";

function over(menupunkt) {
  if (menupunkt != active) { document.getElementById(menupunkt).src="../img/navigation/menu_"+menupunkt+"_over.gif"; }
}

function out(menupunkt) {
  if (menupunkt != active) { document.getElementById(menupunkt).src="../img/navigation/menu_"+menupunkt+".gif"; }
}

function click(menupunkt) {
  if (active) { document.getElementById(active).src="../img/navigation/menu_"+active+".gif"; }
  document.getElementById(menupunkt).src="../img/navigation/menu_"+menupunkt+"_active.gif";
  active=menupunkt;
}


/* Popup für Suche erstellen und behandeln */
function js_fct_popup_suche() {
  SuchFenster =  window.open('./popup_suche.php','Suchformular','width=860,height=660,scrollbars=yes');
  SuchFenster.focus();
}
/* Ende Popup Suche */

/* Popup für Sitemap erstellen und behandeln */
function js_fct_popup_sitemap() {
  SiteFenster =  window.open('../includes/popup_sitemap.php','Sitemap','width=850,height=600,scrollbars=no');
  SiteFenster.focus();
}
/* Ende Popup Sitemap */

/* Popup für Impressum erstellen und behandeln */
function js_fct_popup_imprint() {
  ImprintFenster =  window.open('../includes/popup_imprint.php','Impressum','width=850,height=600,scrollbars=no');
  ImprintFenster.focus();
}
/* Ende Popup Impressum */

