//netscape or internet explorer IE
var selection='index';
function getElement(psID) {
   if(document.all) {
      return document.all[psID];
   } else {
      return document.getElementById(psID);
   }
}
function setselection()
{
	var src=getElement(selection);
	src.background='background/bkdot8.gif';
	src.style.borderLeftColor='#E68B2C';
}
function xhilite(src)
{
	if(src.id==selection) return;
	src.style.borderLeftColor='#00ff00'; 
	src.style.backgroundColor='#6C7CA4';
}
function xrestore(src)
{
	if(src.id==selection) return;
	src.style.borderLeftColor='#96A0B4';
	src.style.backgroundColor='transparent';
}
function xclick(src)
{
	var loc=src.id+".htm";
	top.location=loc;
}

