function show_hide(obj)
{
  if(obj.style.display == 'none')
  {
    obj.style.display = '';
  }
  else
  {
    obj.style.display = 'none'
  }
}


