
<!--//
var isIECompatible= false;

  if( navigator.userAgent.indexOf("Opera") != -1 )
    isIECompatible= true;

  if( parseInt(navigator.appVersion) >= 4 &&
      navigator.userAgent.indexOf("MSIE") != -1 &&
      navigator.userAgent.indexOf("Windows") != -1 )
    isIECompatible= true;

  if( parseInt(navigator.appVersion) > 4 &&
      navigator.userAgent.indexOf("Netscape") != -1 )
    isIECompatible= true;

if( isIECompatible )
  {
  document.write( '            \
  <STYLE>                      \
  a.navi                      \
  {                            \
    width: 95%;                \
    text-decoration:none;      \
    color:#000000;             \
    border-width: 1px;         \
    border-color: #F8F8F8;     \
    border-style: solid;       \
    background-color: #F8F8F8; \
  }                            \
  a.navi:hover                \
  {                            \
    width: 95%;                \
    text-decoration:none;      \
    color:#ffffff;             \
    border-width: 1px;         \
    border-color: #999999;     \
    border-style: solid;       \
    background-color: #824100; \
  }                            \
  </STYLE>' );
  }
else
  {
  document.write( '            \
  <STYLE>                      \
  a.navi                      \
  {                            \
    text-decoration:none;      \
    color:#000000;             \
  }                            \
  a.navi:hover                \
  {                            \
    text-decoration:none;      \
    color:#000000;             \
  }                            \
  </STYLE>' );
  }

//-->
