function changeRow(tableRow, highLight) {
if (highLight) {
tableRow.className='classname2';
} else {
tableRow.className='classname';
}
}
function jumpTo(theUrl) {
document.location.href = theUrl;
}
