function hideElement(elementID)
{
         var obj = window.document.getElementById(elementID);
         obj.style.display = "none";
}
