function ChangeColor(row, bgcolor) {
  row.style.backgroundColor='#'+bgcolor;
}

function ShowLot(url) {
  newwindow=window.open(url, "_blank", "copyhistory=0, top=0, left=0, links=0, toolbar=0, directories=0, status=0, scrollbars=1, resizable=0, menubar=0, width=780, height=600");
  newwindow.focus();
  delete newwindow;
}