function submitSearchForm(obj){
	var plan_id = document.getElementById('plan_hidden').value;
	if(plan_id != 0){
		obj.submit();
	}else{
		alert('Please select a plan from the drop down before clicking "Go".');
	}
}

function submitEditForm(next_mode){
	var frmObj = document.frmEdit;
	var nmObj = document.getElementById('nextMode');
	nmObj.value = next_mode;
	frmObj.submit();
}

function setPlanName(){
	var obj = document.getElementById('formulary_id');
	var planInput = document.getElementById('ur_plan');
	
	var opt = obj.selectedIndex;
	
	planInput.value=obj.options[opt].text;
}