function show(element) {
     var srcElement = document.getElementById(element);

     if(srcElement != null) {
        if(srcElement.style.display == "none") {
           srcElement.style.display = 'block';
        }
        else {
               srcElement.style.display = 'none';
        }
        return false;
     }
  }  
