// JavaScript Document


function highLightRow(thisRow) {
thisRow.style.backgroundColor="#E1ECF7";
}

function backToNormal(thisRow) {
thisRow.style.backgroundColor=""; 
}

function openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
