function enableBackButton(
	oElementButton,
	oForm
	) {

	if(!oElementButton) {
		return;
	}

	Common.Event.add(
		oElementButton,
		'click',
		function() {

			oForm.checkForSubmit = function() {

				return true;

			}

		}
		);	

}
