function highLight(obj) {		
	obj.style.backgroundColor = "#E7F7E7";
}

function lowLight(obj) {
	obj.style.backgroundColor = "#FFFFFF";
}	

function changePAGE(intRsOffSet, strTargetURL) {
	objParamsForm = document.getElementById("frmParams");

	objParamsForm.rs_offset.value = intRsOffSet;
	objParamsForm.action = strTargetURL;
	
	objParamsForm.submit();	
}