﻿// JScript 檔
function ShowAuctionProject(court,id)
{
    NewShowWin=window.open('../Auction/AuctionShow.aspx?Court=' + court + '&ID='+ id,'NewShowWin','resizable=yes,scrollbars=yes,width=860,height=600,left='+(screen.width-860)/2+ ',top='+(screen.Height-600)/2,'');
    NewShowWin.focus();
}

function ShowSaleProject(id)
{
    NewShowWin=window.open('../Sale/SaleShow.aspx?ID='+ id,'NewShowWin','resizable=yes,scrollbars=yes,width=700,height=600,left='+(screen.width-700)/2+ ',top='+(screen.Height-600)/2,'');
    NewShowWin.focus();
}