function makePvsApplicantCalls(){
console.log('In makePvsApplicantCalls');
$.ajax({
type: 'GET',
url: "/reppify/RPCPostAdapter/httprpc/applicationFacade/getPreviousApplicants",
data : {jobId : jobId, page: pgNoPA++},
cache: false,
beforeSend: function(){
console.log('In makePvsApplicantCalls Before Send');
},
success: onSuccessPA,
complete: function(){
$('#prevSpinner').hide();
},
error: handleError,
dataType: 'json'
});
}
function makePvsApplicantCalls(){
con