CODE:<script language='javascript' type='text/javascript'> 
<!-- 
 function ShowHide(id) 
 { 
          if (document.getElementById(id).style.display == "none"||document.all[id].visibility == "hidden"){ 
              Show(id); 
          } else{ 
                 Hide(id); 
            } 
 } 
 function Show(id) 
 { 
          if (document.getElementById) { 
              itm = document.getElementById(id) 
              itm.style.display = "block" 
          } 
          if (document.all){ 
              itm = document.all[id]; 
              itm.visibility = "show" 
          } 
 } 
 function Hide(id) { 
               if (document.getElementById) { 
                   itm = document.getElementById(id) 
                   itm.style.display = "none" 
               } 
               if (document.all){ 
                   itm = document.all[id]; 
                   itm.visibility = "hidden" 
               } 
 } 
//--> 
</script>   
Здесь функция скрытия и показа. В онклик вставляешь функцию  ShowHide() |