/***
  simple mouseover images
*/
if (document.images) {
  bullet1off = new Image();
  bullet1off.src  = '/images/bulletoff.gif';
  bullet1on = new Image();
  bullet1on.src = '/images/bulleton.gif';

  bullet2off = new Image();
  bullet2off.src  = '/images/bulletoff.gif';
  bullet2on = new Image();
  bullet2on.src = '/images/bulleton.gif';

  bullet3off = new Image();
  bullet3off.src  = '/images/bulletoff.gif';
  bullet3on = new Image();
  bullet3on.src = '/images/bulleton.gif';

  bullet4off = new Image();
  bullet4off.src  = '/images/bulletoff.gif';
  bullet4on = new Image();
  bullet4on.src = '/images/bulleton.gif';

  bullet5off = new Image();
  bullet5off.src  = '/images/bulletoff.gif';
  bullet5on = new Image();
  bullet5on.src = '/images/bulleton.gif';

  bullet6off = new Image();
  bullet6off.src  = '/images/bulletoff.gif';
  bullet6on = new Image();
  bullet6on.src = '/images/bulleton.gif';

  bullet7off = new Image();
  bullet7off.src  = '/images/bulletoff.gif';
  bullet7on = new Image();
  bullet7on.src = '/images/bulleton.gif';

  bullet8off = new Image();
  bullet8off.src  = '/images/bulletoff.gif';
  bullet8on = new Image();
  bullet8on.src = '/images/bulleton.gif';

  bullet9off = new Image();
  bullet9off.src  = '/images/bulletoff.gif';
  bullet9on = new Image();
  bullet9on.src = '/images/bulleton.gif';

  bullet10off = new Image();
  bullet10off.src  = '/images/bulletoff.gif';
  bullet10on = new Image();
  bullet10on.src = '/images/bulleton.gif';

  bullet11off = new Image();
  bullet11off.src  = '/images/bulletoff.gif';
  bullet11on = new Image();
  bullet11on.src = '/images/bulleton.gif';
}
function change(image,ext) {
  if (document.images)
      document.images[image].src = eval(image + ext + ".src");
}

/***
  td cell background change (while to gold border)
*/
function cOn(td) {
  if(document.getElementById||(document.all && !(document.getElementById))) {
    td.style.border="1px solid #F1AB00";
  }
}
function cOut(td) {
  if(document.getElementById||(document.all && !(document.getElementById))) {
    td.style.border="1px solid #FFFFFF";
  }
}

// print window
function printWindow() {
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}
