  startList = function(id) {
    if (document.all&&document.getElementById) {
      navRoot = document.getElementById(id);
      if(navRoot){
        for (i=0; i<navRoot.childNodes.length; i++) {
          node = navRoot.childNodes[i];
          if (node.nodeName=="LI") {
            node.onmouseover=function() {
            this.className+=" over";
/* 			if (is_ie) {
				if (document.all("wtopic")) {
					document.all("wtopic").style.visibility = "hidden";
				};
			} */
          }
          node.onmouseout=function() {
          this.className=this.className.replace(" over", "");
			if (is_ie) {
				if (document.all("wtopic")) {
					document.all("wtopic").style.visibility = "visible";
				};
			}
      }
      }
     }
    }
   }
  }

  function refresh() {
    if(window.opera) {
      /* DRAG 24.04.08 document.body.style.backgroundColor = 'white'; */
      /*
      elem = document.getElementById("headerPhotoWrapper");
      if(elem)
        elem.style.backgroundImage = 'url(images/content/home_header_photo_bar.jpg)';
      elem = document.getElementById("headerPhotoWrapperSubpage");
      if(elem){
        document.body.style.backgroundColor = 'white';
        //elem.style.backgroundImage = 'url(images/content/subpage_header_photo_bar.jpg)';
        elem.style.backgroundColor = 'white';
      }
      */
    }
  }
  

  function showKomunikat() {
    window.open(
      'html/komunikat.html',
      'komunikatWindow',
      'width=350,height=200,scrollbars=no,menubar=no,status=no,toolbar=no,location=no,directories=no');
  }

  function hideWtopicInIe(){
    if(is_ie6){
      if (document.getElementById('wtopic')){
        document.getElementById('wtopic').style.visibility="hidden";
      }
      if (document.getElementById('wfund_name')){
        document.getElementById('wfund_name').style.visibility="hidden";
      }
      if (document.getElementById('wcity')){
        document.getElementById('wcity').style.visibility="hidden";
      }
      if (document.getElementById('wdist_id')){
        document.getElementById('wdist_id').style.visibility="hidden";
      }
    }
  }
  function showWtopicInIe(){
    if(is_ie6){
      if (document.getElementById('wtopic')){
        document.getElementById('wtopic').style.visibility="visible";
      }
      if (document.getElementById('wfund_name')){
        document.getElementById('wfund_name').style.visibility="visible";
      }
      if (document.getElementById('wcity')){
        document.getElementById('wcity').style.visibility="visible";
      }
      if (document.getElementById('wdist_id')){
        document.getElementById('wdist_id').style.visibility="visible";
      }
    }
  }
  
