﻿function isSearch_lists(type)
{    
    var txtJobAdd= document.getElementById('txtJobAdd_' + type);    
    var txtJob= document.getElementById('txtJob_' + type);  
    var strUrl = "";
    if (txtJobAdd.value != '' && txtJobAdd.value != '宿迁市')
    {
        strUrl = "?a=" + escape(txtJobAdd.value);
    }
    if(txtJob.value != '')
    {
        if(strUrl == '')
            strUrl = "?j=" + escape(txtJob.value);
        else
            strUrl += "&j=" + escape(txtJob.value);
    }
    if(type == "1")
        strUrl = "ListsRecruitment.aspx" + strUrl;
    else if(type == "2")
        strUrl = "ListsRequestsJob.aspx" + strUrl;
    
    this.location.href=strUrl;
}
function isSearch_init(type,a,j)
{    
    if(a != "")
        document.getElementById('txtJobAdd_' + type).value = a;
    if(j != "")
        document.getElementById('txtJob_' + type).value = j;
}
