function changeField(formName,newName,oldName) {
	document.forms[formName].elements[oldName].name = newName;
}