    //****************************************************
    //  © 2009 Koordinauten Gbr
    //****************************************************
   
    // ***************************************************
    // help me
    // ***************************************************
    function helper(status){
      if(status==0){
        document.getElementById("content_box").style.background = "url(bilder/icos/html_hg_02.jpg)";
      }
      
      if(status==1){
        document.getElementById("content_box").style.background = "url(bilder/icos/raster.jpg)";
      }
      
      if(status==2){
        document.getElementById("content_box").style.background = "url(bilder/icos/html_hg_03.jpg)";
      }
      
      if(status==3){
        if(brw.ns5 || brw.ns4){
          document.getElementById("container_navi").style.opacity = 0.6;
          document.getElementById("v_content_1").style.opacity = 0.6;
        }
        if(brw.ie8 || brw.ie7 || brw.ie6 || brw.ie5 || brw.ie4){
          document.getElementById("container_navi").style.filter='alpha(opacity=60)';
          document.getElementById("v_content_1").style.filter='alpha(opacity=60)';
        }
      }
      
      if(status==4){
        if(brw.ns5 || brw.ns4){
          document.getElementById("container_navi").style.opacity = 1.0;
          document.getElementById("v_content_1").style.opacity = 1.0;
        }
        if(brw.ie8 || brw.ie7 || brw.ie6 || brw.ie5 || brw.ie4){
          document.getElementById("container_navi").style.filter='alpha(opacity=100)';
          document.getElementById("v_content_1").style.filter='alpha(opacity=100)';
        }
      }
      
      if(status==5){
        if(brw.ns5 || brw.ns4){
          document.getElementById("container_navi").style.opacity = 0.30;
          document.getElementById("v_content_1").style.opacity = 0.30;
        }
        if(brw.ie8 || brw.ie7 || brw.ie6 || brw.ie5 || brw.ie4){
          document.getElementById("container_navi").style.filter='alpha(opacity=30)';
          document.getElementById("v_content_1").style.filter='alpha(opacity=30)';
        }
      }
      
      if(status==6){
        if(brw.ns5){
          document.getElementById("browser_box").innerHTML = "Browser: Netscape 5";
        }else if(brw.ns4){
          document.getElementById("browser_box").innerHTML = "Browser: Netscape 4";
        }else if(brw.ie8){
          document.getElementById("browser_box").innerHTML = "Browser: MSIE 8";
        }else if(brw.ie7){
          document.getElementById("browser_box").innerHTML = "Browser: MSIE 7";
        }else if(brw.ie6){
          document.getElementById("browser_box").innerHTML = "Browser: MSIE 6";
        }else if(brw.ie5){
          document.getElementById("browser_box").innerHTML = "Browser: MSIE 5";
        }else if(brw.ie4){
          document.getElementById("browser_box").innerHTML = "Browser: MSIE 4";
        }
      }  
      
      if(status==7){
        document.getElementById("v_content_1").style.visibility = "visible";
      }
      
      if(status==8){
        document.getElementById("v_content_1").style.visibility = "hidden";
      }       
    } 
    // ***************************************************
    // sub_pages
    // ***************************************************
    function show_sub_page(id,cnt){
      for( i = 0; i < cnt; i++ ){
        document.getElementById("sub_page_" + i).style.visibility = "hidden";
      }
      document.getElementById("sub_page_" + id).style.visibility = "visible";
      page_akt = id;
    }