if (document.images) {
   IS = new Array (
      "10.gif"
   );
   IL = new Array ();
   for (i in IS) {
      IL[i] = new Image ();
      IL[i].src = "/i/" + IS[i];
   }
}
function mOn(m,t) {
  document.getElementById('m'+m).style.cssText = "background: url(/i/10.gif) no-repeat 0px 1px;";
  t.style.cssText = "color: white; font-weight: bold;";
}
function mOff(m,t) {
  document.getElementById('m'+m).style.cssText = "";
  t.style.cssText = "";
}
function faq(t) {
  w = window.open('/scripts/faq/?'+t,'faq','width=450,height=460,top=100,left=100,toolbar=0,location=0,scrollbars=0,status=0,menubar=0,resizable=0');
  w.focus();	
}