﻿// JScript File


function showup(v)
{   
   if (v.hasChildNodes())
   {
        var colTags = v.getElementsByTagName("span");
        if (colTags != null && colTags.length >= 0)
            colTags[0].style.display = "block";
  }
}

