
function hiFormat(h) {
  appname= navigator.appName;
  if (appname == "Microsoft Internet Explorer")
    var hi = (document.body.offsetHeight - 200 + h) + 'px';
  else
    var hi = (window.innerHeight - 210 + h) + 'px';
  document.getElementById("tdheight").style.height = hi;
}

function overButton(me) {
  var melnk = me + "lk";
  document.getElementById(melnk).style.color          = "#ffffff";
  document.getElementById(me).style.background        = "#00833a"; /*"#AAD695"; */
  document.getElementById(me).style.cursor            = "pointer";
}

function outButton(me) {
  var melnk = me + "lk";
  document.getElementById(melnk).style.color          = "#000000";
  document.getElementById(me).style.background        = "#ffffff";
}

function goHref(me) {
  var link = me + ".html";
  self.location.href = link;
}
