// JavaScript Document
function comments(toThis)
  {
  if (document.getElementById)
    {
    document.getElementById("over").innerHTML = toThis;
    }
  else if (document.all)
    {
    document.all["over"].innerHTML = toThis;
    }
  }
base = "<strong>Awards &amp; Recognition</strong>";
comments(base);