// JavaScript Document


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

// fail function
var ezHandleFailure = function(o) {

    content = o.argument.responseArea;
    contentArea = document.getElementById(content);

    if (o.responseText !== undefined) {
        contentArea.innerHTML = "There was a problem updating the data.  Please try again.";
    }
};