//初始化用户选择的地区、行业和职能选项(非常重要 不能删)
if(document.all("hidJobArea").value != ''){
	var AreaIDList = StrSort(document.all("hidJobArea").value);
	for(i=0;i<AreaIDList.length;i++){
		arySelectedAreaID[i] = AreaIDList[i];
		arySelectedAreaState[i] = 1;
	}
}

if(document.all("hidIndustry").value != ''){
	var IndustryIDList = StrSort(document.all("hidIndustry").value);
	for(i=0;i<IndustryIDList.length;i++){
		arySelectedIndustryID[i] = IndustryIDList[i];
		arySelectedIndustryState[i] = 1;
	}
}

if(document.all("hidFuntype").value != ''){
	var FuntypeIDList = StrSort(document.all("hidFuntype").value);
	for(i=0;i<FuntypeIDList.length;i++){
		arySelectedFuntypeID[i] = FuntypeIDList[i];
		arySelectedFuntypeState[i] = 1;
	}
}
CreateIndustrySelectedCheckBoxList(document.all("tblSelectedIndustry"),arySelectedIndustryID,"chkSelectedIndustry","spSelectedIndustry","2","ChangedEndItemIndustry");
CreateAreaSelectedCheckBoxList(document.all("tblSelectedArea"),arySelectedAreaID,"chkSelectedArea","spSelectedArea","2","ChangedEndItemArea");
CreateFuntypeSelectedCheckBoxList(document.all("tblSelectedFuntype"),arySelectedFuntypeID,"chkSelectedFuntype","spSelectedFuntype","2","ChangedEndItemFuntype");

arySelectedPubScheduleID[0] = document.all("hidPubSchedule").value;
