
// NOTE that in the following line there are no quotation marks; this is intentional (see the URL above).
var ampRE = /&/g;

function fixAmpersands(field) {
 field.value = field.value.replace(ampRE, "and");
}
