
function showitem(showid)
{
  try
  {
     document.getElementById(showid).style.display = "";
  }
	catch(err)
	{}
}
function hideitem(hideid)
{
  try
  {
     document.getElementById(hideid).style.display = "none";
  }
	catch(err)
	{}
}
