function boldIt(theText) {
   if (document.styleSheets) theText.style.fontWeight='bold';
   }

function unBoldIt(theText) {
   if (document.styleSheets) theText.style.fontWeight='normal';
   }

var windowTarget;

function displayPrintButton(w) {
  if ((navigator.appName.indexOf("Netscape") > -1 &&
     parseInt(navigator.appVersion) >= 4) || 
     (navigator.appName.indexOf("Microsoft") > -1 &&
      parseInt(navigator.appVersion) >= 4) ) {
     // document.write
     //  ("<FORM><INPUT TYPE=button VALUE='Print' onClick='printCurrentPage();'></FORM>");
     document.write
       ("<A HREF='javascript:printPage(windowTarget)')><IMG src='./images/printer.gif' border=0 ALT='Print current page' height=21 width=21></a>");
     windowTarget = w;  
       }
   }
   
function printPage(w) {
   if (navigator.appName.indexOf("Microsoft") > -1 &&
       navigator.appVersion.indexOf("5.") == -1) {
      // IE4 
      OLECMDID_PRINT = 6;
      OLECMDEXECOPT_DONTPROMPTUSER = 2;
      OLECMDEXECOPT_PROMPTUSER = 1; 
      WebBrowser = 
       '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>'; 
      w.document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
      w.WebBrowser1.ExecWB(OLECMDID_PRINT,   OLECMDEXECOPT_PROMPTUSER);
      w.WebBrowser1.outerHTML = "";
     }
   else {
     // N4 IE5
     w.print();
     }
}
