<!-- 
function setCol(cell,textcolor){
var celem=cell.getElementsByTagName('a');
		celem[0].style.color=textcolor;
	return true;
}
function setCol2(cell,textcolor,bgcolor){
var celem=cell.getElementsByTagName('a');
	if(textcolor!= -1){
		celem[0].style.color=textcolor;
	}
	if(bgcolor!= -1){
		cell.style.backgroundColor=bgcolor;
		celem[0].style.backgroundColor=bgcolor;
	}
	return true;
}
// -->

