//Set the highlight color on each page
//var rwH = '#99ccff';
var selectedRow = null;var sr1 = null;var sr2 = null;
function Select(row, url){
	if (selectedRow != null){selectedRow.style.backgroundColor = sr2;}selectedRow = row;selectedRow.style.backgroundColor = rwH;if (sr1 != rwH){sr2 = sr1;}
	var win = window.open(url); win.focus();
}
function MouseOver(row){sr1 = row.style.backgroundColor;row.style.backgroundColor = rwH;row.style.cursor = 'hand';}
function MouseOut(row){if (row != selectedRow){row.style.backgroundColor = sr1;}row.style.cursor = 'default';}