function showHide(theid){
  
   if (document.getElementById) {  
	   if (document.getElementById(theid).className != 'show')
	   {
	      document.getElementById(theid).className = 'show';	
	   }
	   else
	   {	
	      document.getElementById(theid).className = 'hidden';
	   }
    }	
}

