<!--

// CHANGE THE VALUES FOR THE NORMAL AND HIGHLIGHTED COLORS

var classhighlightcolor="whitesmoke"
var highlightcolor="#a042ff"
var normalcolor = ""
// Function code do not alter
var ns6 = (!document.all && document.getElementById);
var ie4 = (document.all);
var ns4 = (document.layers);

function HighlightItem(id) {
if (ns6) {
this.obj = document.getElementById(id).style;
obj.backgroundColor=highlightcolor;
return this.obj;
}
else if(ie4) {
this.obj = document.all[id].style;
obj.backgroundColor=highlightcolor;
return this.obj;
}
else if(ns4) {
this.obj = document.layers[id];
obj.bgColor=highlightcolor;
return this.obj;
 }

}

function Itemnormal(id)  {
if (ns6) {
this.obj = document.getElementById(id).style;
obj.backgroundColor=normalcolor;
return this.obj;
}
else if(ie4) {
this.obj = document.all[id].style;
obj.backgroundColor= normalcolor;
return this.obj;
}
else if(ns4) {
this.obj = document.layers[id];
obj.bgcolor=normalcolor;
return this.obj;
 }

}

function ClassHighlight(id) {
if (ns6) {
this.obj = document.getElementById(id).style;
obj.backgroundColor=classhighlightcolor;
return this.obj;
}
else if(ie4) {
this.obj = document.all[id].style;
obj.backgroundColor=classhighlightcolor;
return this.obj;
}
else if(ns4) {
this.obj = document.layers[id];
obj.bgColor=classhighlightcolor;
return this.obj;
 }

}

function Classnormal(id)  {
if (ns6) {
this.obj = document.getElementById(id).style;
obj.backgroundColor=normalcolor;
return this.obj;
}
else if(ie4) {
this.obj = document.all[id].style;
obj.backgroundColor= normalcolor;
return this.obj;
}
else if(ns4) {
this.obj = document.layers[id];
obj.bgcolor=normalcolor;
return this.obj;
 }

}
//-->