// Functions that enable or disable the Title field 'Other' depending radio button selected.

function enableFields(thisForm) { 
	thisForm.othertitle.disabled = false; 
} 

function disableFields(thisForm) { 
	thisForm.othertitle.disabled = true; 
}

