// Not sure whether this file should be available to ALL sites (ie, in the central directory), since it includes some jquery (and hence any pages calling it should have it also)

// function called at the end of validate form routine to disable all buttons in that form
function DisableEnableButtons(xForm,xHow){
	$('#'+xForm+' :button, #'+xForm+' :submit, #'+xForm+' :reset').attr('disabled', xHow);
}