/*******************************************************
 * AJAX framework code
 ******************************************************/
/**
 * psqtAjaxComponent
 */
psqtAjaxComponent.prototype = new BaseAjaxComponent();

function psqtAjaxComponent(id) {
    BaseAjaxComponent.apply(this, arguments);
    this.ajaxHandlerName = "PsqtCheckHandler";
    this.timeout = (60 * 1000); // 1 minute
}

psqtAjaxComponent.prototype.update = function(data, html, newComponent) {
    psqtUpdate(data);
};

psqtAjaxComponent.prototype.initialize = function() {

};


psqtAjaxComponent.prototype.validationError = function(validationErrors) {

};

psqtAjaxComponent.prototype.userError = function(errorString, exception) {

};


psqtAjaxComponent.prototype.systemError = function(errorString) {

};


	

