
var ms = navigator.appVersion.indexOf("MSIE")
var net6 = (navigator.userAgent.indexOf("Gecko") > 0)
var ie4 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5, ms+6)) >= 4)



function highlight(id,i){
  if (ie4 || net6) {
    if (i==0) 
      {id.style.color='#dd0000'; id.style.textDecoration="underline"}
    else 
      {id.style.color='#326699'; id.style.textDecoration="none"}
  }
}
