function SetItem(item, state) {
  if (state) {
    item.style.backgroundColor = "#0B550E";
    item.style.color           = "#E5E1C8";
    item.style.cursor          = "default";

  } else {
    item.style.backgroundColor = "#E5E1C8";
    item.style.color           = "#0B550E";
    item.style.cursor          = "default";
  }
}

function Go(path, loc) {
  if (loc == "_blank") {
    window.open(path);
  } else if (loc == "_top") {
    top.location.href = path;
  } else {
    top.frames[loc].location.href = path;
  }
}

function BlurLinks(){
    lnks=document.getElementsByTagName('a');
    for(i=0;i<lnks.length;i++){
    lnks[i].onfocus=new Function("if(this.blur)this.blur()");
    }
}
onload=BlurLinks;
