﻿// JScript File


function PopDataManage(strField){
var winl = (screen.width-1024)/2;
    var wint = (screen.height-600)/2;
    window.open('PopListManage.aspx?pop=1&cid=' + strField, 'poplistmanage' + strField, 'top='+ wint + ',left=' + winl +  ' ,width=1024,height=600,resizable=yes,scrollbars=yes');
}

function PopClientsDocuments(clientId, freightTypeId){
var winl = (screen.width-1024)/2;
    var wint = (screen.height-600)/2;
    window.open('PopListManage.aspx?pop=1&cid=160&clientId=' + clientId + '&freightTypeId='+freightTypeId ,'clientsdocs', 'top='+ wint + ',left=' + winl +  ' ,width=1024,height=600,resizable=yes,scrollbars=yes');
}

function PopHistoryList(cid, did){
    var winl = (screen.width-1024)/2;
    var wint = (screen.height-600)/2;
    window.open('TransactionHistoryList.aspx?cid=' + cid + '&did='+ did, 'TransactionHistoryList' + did, 'top='+ wint + ',left=' + winl +  ' ,width=1024,height=600,resizable=yes,scrollbars=yes');
}

