function ShowLot(lot) {
document.getElementById(lot).style.display="block";
return true;
}
function HideLot(lot) {
document.getElementById(lot).style.display="none";
return true;
}

//<![CDATA[
var theForm = document.forms['routerForm'];
if (!theForm) {
    theForm = document.routerForm;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]>