function lightOn(){
	this.style.cursor='pointer';
	this.style.backgroundColor='#006CB5'	
}
function lightOf(){
	this.style.backgroundColor=''	
}
function initHL(){
if(document.all){
var items=document.all['hl'];
}else{
var items=document.getElementsByName("hl");
}
for(var i=0;i<items.length;i++){
	if(items[i].id=="hl"){
		items[i].onmouseover=lightOn;
		items[i].onmouseout=lightOf;
	}
}
}
//////////////////////////////////////////////
function lightOn1(){
	
	this.style.backgroundColor='#F6F6F6'	
}
function lightOf1(){
	this.style.backgroundColor=''	
}
function initHL1(){
if(document.all){
var items=document.all['hl1'];
}else{
var items=document.getElementsByName("hl1");
}
for(var i=0;i<items.length;i++){
	if(items[i].id=="hl1"){
		items[i].onmouseover=lightOn1;
		items[i].onmouseout=lightOf1;
	}
}
}