function SetText(ob, value)
{
  if (document.all){
  ob.innerText = value;
  } else {
          ob.textContent = value;
          }
}

function GetText(ob)
{
  if (document.all){
    return ob.innerText;
  } else {
          return ob.textContent;
          }
}
