function confirmApply(jid, jnum, did) {
	if(confirm('We will notify the office that you are interested in this job.\n\nClick "OK" to proceed.\n"Cancel" to cancel.')) {
		document.frmSearch.JobID.value=jid;
		document.frmSearch.JobNumber.value=jnum;
		//document.frmSearch.CandidateID.value=cid;
		document.frmSearch.DoctorID.value=did;
		document.frmSearch.job_action.value='1';
		document.frmSearch.submit();
	}
}
