// JavaScript Document


// success function
var ezHandleSuccess = function(o) {
    contentId = o.argument.responseArea;
    contentArea = document.getElementById(contentId);
	contentArea.innerHTML = o.responseText;
};

// fail function
var ezHandleFailure = function(o) {
	contentId = o.argument.responseArea;
    contentArea = document.getElementById(contentId);
	if (o.responseText !== undefined) {
        contentArea.innerHTML = "There was a problem updating the data.  Please try again.";
    }
};