function gL (qs) {
  document.location.href = '/auctions/lot.x?'+qs;
  return true;
}
function hL (objRow, blnHoverOver) {
  var strNewClassName
  if (blnHoverOver == 1) {
    strNewClassName = objRow.className+'_on';
  } else {
    strNewClassName = objRow.className.substr(0,objRow.className.length-3);
  }
  if (objRow.id.substr(objRow.id.length-1,objRow.id.length) == "h") {
    objSister = document.getElementById(objRow.id.substr(0,objRow.id.length-1)+'f');
  } else {
    objSister = document.getElementById(objRow.id.substr(0,objRow.id.length-1)+'h');
  }
  objRow.className = strNewClassName;
  objSister.className = strNewClassName;
}

function goPastAuction (strAuction,strVenue) {
  if (!strVenue) strVenue = '';
  if (strAuction.substr(0,3) == "old") {
    document.location.href = 'page_prev_auctions.x?a='+escape(strAuction.substr(4,strAuction.length))+'&v='+strVenue;
  } else {
    document.location.href = '/auctions/list.x?a='+strAuction+'&v='+strVenue;
    //alert('Current');
  }
}