
var g_RowColorSave = "";

function rowOver(elRow) {
	g_RowColorSave = elRow.style.backgroundColor;
	elRow.style.backgroundColor = g_RowOverColor;
}

function rowOut(elRow) {
	elRow.style.backgroundColor = g_RowColorSave;
}

function allTabClick(href) {
  showLoader(); // embedded in InventoryDisplay DLL  
  window.location.href = href;
}


