function changeto(highlightcolor, evt){
source=evt.target||evt.srcElement;
if (source.tagName=="TR"||source.tagName=="TABLE")
return
while(source.tagName!="TR")
source=source.parentElement||source.parentNode;
if (source.style.backgroundColor!=highlightcolor&&source.id!="ignore")
source.style.backgroundColor=highlightcolor;
}

/*function changeback(originalcolor, evt){
source = evt.target || evt.srcElement;
if (evt.fromElement.contains(evt.toElement)||source.contains(evt.toElement)||source.id=="ignore")
return
if (evt.toElement!=source)
source.style.backgroundColor=originalcolor;
}*/

function linkto(link){
	document.location.href=link;	
}