    function hideElement(id)
    {
       if (document.getElementById) { // DOM3 = IE5, NS6
       document.getElementById(id).style.visibility = 'hidden';
        }        
     }
      function showElement(id)
    {
       if (document.getElementById) { // DOM3 = IE5, NS6
       document.getElementById(id).style.visibility = 'visible';
        }        
     } 

