function ShowHide(elem){
  var s = elem.style;
  s.display = (s.display != 'none') ? 'none': '';
}
