// special_ns_vs_firefox_css.js
// Used in conjunction with ".double-uline-tips" in the stylesheet files -- double underline css for Help Tips

version=parseInt(navigator.appVersion);
if (navigator.appVersion.indexOf('7.') > -1)
   { version=7; }

if ((navigator.appName == 'Netscape') && (version=7))
   {
document.write('<style type="text/css">.double-uline-tips {border-bottom: 1px solid #007700; padding-bottom: 1px; text-decoration: underline; color: #007700; background-color: transparent; cursor: help;}</style>');
   }

if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent))
   {
document.write('<style type="text/css">.double-uline-tips {border-bottom: 1px solid #007700; padding-bottom: 0px; text-decoration: underline; color: #007700; background-color: transparent; cursor: help;}</style>');
   }
