//============================================================================//
// (c) 2005 Liss-Design Aachen, Deutschland                                   //
//----------------------------------------------------------------------------//
// File:         standard.js                                                  //
// Description:  Standart Java-Script sources for WSL navigation              //
//============================================================================//

var active = "none";

function SubMenuShow (id) {
  //--------------------------------------------------------------------------//
  //                                                                          //
  //--------------------------------------------------------------------------//
  if (active != "none" ) {
    if (active != id) {
      window.document.getElementById(active).style.visibility="hidden";
    }
  }
  active = id;
  window.document.getElementById(id).style.visibility="visible";
}

function SubMenuHide () {
  //--------------------------------------------------------------------------//
  //                                                                          //
  //--------------------------------------------------------------------------//
  if (active != "none" ) {
    window.document.getElementById(active).style.visibility="hidden";
    active = "none";
  }
}

function ImgSrc (imgid, imgsrc) {
  //--------------------------------------------------------------------------//
  //                                                                          //
  //--------------------------------------------------------------------------//
  window.document.images[imgid].src = imgsrc;
}
