app.addSubMenu({ cName: "Delete Form Fields", cParent: "File"});
app.addMenuItem({ cName: "Delete Fields", cParent: "Delete Form Fields", cExec:"deleteFields()"});


	function deleteFields () 

		{ 

		var Delete = app.response({cQuestion:"Type the name of the field you wish to delete - NB this will delete all form fields with the same name in your document", 
		cTitle: "Delete Field", cDefault: "Please enter field name"});

		this.removeField(Delete);

		}