				var evalFunc = new evalFunc();
				evalFunc.USmode = 0;

				function typo3FormFieldSet(theField, evallist, is_in, checkbox, checkboxValue)	{	//
					if (document.forms['tx-frontendformslib-form'][theField])	{
						var theFObj = new evalFunc_dummy (evallist,is_in, checkbox, checkboxValue);
						var theValue = document.forms['tx-frontendformslib-form'][theField].value;
						if (checkbox && theValue==checkboxValue)	{
							document.forms['tx-frontendformslib-form'][theField+"_hr"].value="";
							if (document.forms['tx-frontendformslib-form'][theField+"_cb"])	document.forms['tx-frontendformslib-form'][theField+"_cb"].checked = "";
						} else {
							document.forms['tx-frontendformslib-form'][theField+"_hr"].value = evalFunc.outputObjValue(theFObj, theValue);
							if (document.forms['tx-frontendformslib-form'][theField+"_cb"])	document.forms['tx-frontendformslib-form'][theField+"_cb"].checked = "on";
						}
					}
				}
				function typo3FormFieldGet(theField, evallist, is_in, checkbox, checkboxValue, checkbox_off, checkSetValue)	{	//
					if (document.forms['tx-frontendformslib-form'][theField])	{
						var theFObj = new evalFunc_dummy (evallist,is_in, checkbox, checkboxValue);
						if (checkbox_off)	{
							if (document.forms['tx-frontendformslib-form'][theField+"_cb"].checked)	{
								document.forms['tx-frontendformslib-form'][theField].value=checkSetValue;
							} else {
								document.forms['tx-frontendformslib-form'][theField].value=checkboxValue;
							}
						}else{
							document.forms['tx-frontendformslib-form'][theField].value = evalFunc.evalObjValue(theFObj, document.forms['tx-frontendformslib-form'][theField+"_hr"].value);
						}
						typo3FormFieldSet(theField, evallist, is_in, checkbox, checkboxValue);
					}
				}

