/**
*
*/
function checkForm(frm){
	var PositionName = trim(frm.PositionSearch200_PositionName.value);
	var Department = trim(frm.PositionSearch200_Department.value);
	var WorkPlace = trim(frm.PositionSearch200_WorkPlace.value);
	if(PositionName.length > 20){
		alert("职位名称最多为20个字符");
		frm.PositionSearch200_PositionName.focus();
		return false;
	}
	if(Department.length > 20){
		alert("所属部门最多为20个字符");
		frm.PositionSearch200_Department.focus();
		return false;
	}
	if(WorkPlace.length > 20){
		alert("工作地区最多为20个字符");
		frm.PositionSearch200_WorkPlace.focus();
		return false;
	}
	return true;
}

function Connect(frm){
	if(frm.WorkPropertyAll.checked)
	{
		frm.WorkProperty0.disabled = true;
		frm.WorkProperty1.disabled = true;
		frm.WorkProperty2.disabled = true;
		frm.WorkProperty0.checked = false;
		frm.WorkProperty1.checked = false;
		frm.WorkProperty2.checked = false;
	}else{
		frm.WorkProperty0.disabled = false;
		frm.WorkProperty1.disabled = false;
		frm.WorkProperty2.disabled = false;
	}
}

function Connect1(frm){
	if(frm.WorkProperty0.checked||frm.WorkProperty1.checked||frm.WorkProperty2.checked){
		frm.WorkPropertyAll.disabled = true;
		frm.WorkPropertyAll.checked = false;
	}else{
		frm.WorkPropertyAll.disabled = false;
	}
}


