function ShowHideSpan(obj, vis)
{
  if (vis == 1) 
    obj.style.display='inline';
  else 
    obj.style.display='none';
}
