//                                browvers.js      RCTMPL                             
//                               Release 1.0.1
//              © 2003, Oracle Corporation. All rights reserved.              

    var browser=navigator.userAgent.toLowerCase();

    var ie5p    = (browser.indexOf("msie 5.0")!=-1);
    var ie5_5p  = (browser.indexOf("msie 5.5")!=-1);
    var ie6_0p  = (browser.indexOf("msie 6.0")!=-1);

if (ie5_5p || ie5p || ie6_0p) 
  {
//   Use this to reference another style sheet. //
//   document.write('<link rel="STYLESHEET" type="text/css" href="blafdoc_ie55.css">') //

//   Use this to test that the JavaScript works. //
//   document.write('<center><font color=red><strong>This browser is IE5, IE5.5 or IE6.0</strong></font></center>') //

   document.write('<STYLE>')
   document.write('BODY, P, TABLE, TD, TH, OL, UL, A, DL, DT, DD, BLOCKQUOTE, CAPTION {font-size : x-small;}')
   document.write('TD.zz-nav-header-cell, A.zz-nav-header-link, TD.zz-nav-button-cell, A.zz-nav-button-link {font-size : 90%;}') 
   document.write('</STYLE>')

  }
// -->