﻿
function hideTwoWayDiv() {
    if ($('#ReturnDiv').is(':visible') == true) {
        $("#ReturnDiv").animate({ "height": "toggle" }, { duration: 1000 });
        $("#ctl00_ContentPlaceHolder1_TransferTop1_txtDateTo").val('1/1/00');
        $("#ctl00_ContentPlaceHolder1_TransferTop1_txtTimeTo").val('00:00');
    }
}
function ShowTwoWayDiv() {
    if ($('#ReturnDiv').is(':visible') == false) {
        $("#ReturnDiv").animate({ "height": "toggle" }, { duration: 1000 });
        $("#ctl00_ContentPlaceHolder1_TransferTop1_txtDateTo").val('');
        $("#ctl00_ContentPlaceHolder1_TransferTop1_txtTimeTo").val('');
    }
}

