  function getid(o){
    if (document.getElementById)
        return document.getElementById(o).style
    else if (document.all)
        return document.all.o.style
  }

  function ShowBack(id) {
    getid("Back" +id).display="inline";
  }
  function HideBack(id) {
    getid("Back" +id).display="none";
  }
  function ShowAll(id) {
    getid("All" +id).display="inline";
  }
  function HideAll(id) {
    getid("All" +id).display="none";
  }
  function ShowNext(id) {
    getid("Next" +id).display="inline";
  }
  function HideNext(id) {
    getid("Next" +id).display="none";
  }
  function ShowAdd(id) {
    getid("Add" +id).display="inline";
  }
  function HideAdd(id) {
    getid("Add" +id).display="none";
  }
  function ShowView(id) {
    getid("View" +id).display="inline";
  }
  function HideView(id) {
    getid("View" +id).display="none";
  }
  function ShowPlus(id) {
    getid("Plus" +id).display="inline";
  }
  function HidePlus(id) {
    getid("Plus" +id).display="none";
  }