function showHide(el)
{
   id = document.getElementById(el).style;
   id.display = (id.display != 'block')? 'block' : 'none';
} 
