// By Michael Vincenty (CORE member)
// 12/7/202
//
// This JavaScript function generates the "pull quote" string for the
// CORE trip reports.  It only emits the pull quote for browsers that 
// have a reasonable implementation of CSS1.
//
// This function depends on the "DetectBrowserVersion.js" script.
// "DetectBrowserVersion.js" must have been included into the calling
// script before "emitPullQuote()" is called.
//
function emitPullQuote(quoteMsg) {
   //document.write("emitPullQuote Entered!");
   if (browser == "ie5" || browser == "ie55" || browser == "nn6") {
      document.write("<p  class=\"pullq\">");
      document.write(quoteMsg);
      document.write("</p>");
   }
}
