//
// Javascript library for locationblocks
//
//
// This script file contains all required scripts for the locationblocks system
// 


//
// lbHtmlRowhighlight adds -over to the current classname of the row if highLight is true, and removes it when false
//
function lbHtmlRowHighlight(tableRow, highLight) {
	if (highLight) {
		if(tableRow.className.search("-over") == -1) { // only add once
			tableRow.className = tableRow.className.concat('-over');
//			window.status = tableRow.className;
		}
	} else {
		tableRow.className= tableRow.className.replace('-over', '');
	}

}


//
// lbHtmlJumpTo sets an URL in the current window
//
function lbHtmlJumpTo(theUrl) {
	document.location.href = theUrl;
}

