var irIE = /.*MSIE.*/;
var irFF = /.*Firefox.*/;
var browserc;

if(irIE.test(navigator.userAgent)){
  browserc = "className";
}
else if(irFF.test(navigator.userAgent)){
  browserc = "class";
}

function ms(item){
  item.style.height = "15px";
  item.style.color = "#FFFFFF";
  item.style.backgroundColor = "#1865A6";
}

function mo(item){
  item.style.height = "15px";
  item.style.color = "#1865A6";
  item.style.backgroundColor = "#FFFFFF";
  item.style.fontSize = "8px";
  item.style.lineHeight = "9px";
}