<!--
if (document.images) {
  var dot = new Image();
  dot.src = "/images/boxb.gif";
  var empty = new Image();
  empty.src = "/images/boxa.gif";
}
function act(imgName) {
  if (document.images)
    document[imgName].src = dot.src;
}
function iact(imgName) {
  if (document.images)
    document[imgName].src = empty.src;
}
// -->
