// swaps the value of the indicated form field

function swapFormValue(oForm, strFieldName, newValue) {

	if (oForm && oForm.elements[strFieldName]) {

		oForm.elements[strFieldName].value = newValue;

	}

}
