function hideButton(idSpan)
{
  if(document.getElementById)
	{
    document.getElementById(idSpan).style.display = "none";
  }
}