function searchJob()
{
	var job;
	job=document.all.jobKey.value;
	jump(1,job,'','','');
}

function searchp()
{
	var apost,awork_time,aeducation;
	apost=document.all.apost.value;
	awork_time=document.all.work_time.value;
	aeducation=document.all.education.value;
	jump(2,'',apost,awork_time,aeducation);
}

function jump(kind,job,post,work_time,education)
{
	if(kind==1)
		var para="../mem/sJobList.php?jobKey="+UrlEncode(job);
	if(kind==2)
		var para="../mem/sPList.php?post="+UrlEncode(post)+"&work_time="+work_time+"&education="+education;
	window.open (para, "_blank", "height=600, width=800, toolbar=yes, menubar=yes, scrollbars=yes, resizable=yes,location=yes, status=yes");
}
