QuestionAjax = Class.create();
QuestionAjax.prototype = {

	initialize: function() {},

	sendPost: function(url, form, message){
           new Ajax.Request(url, {
               method: 'post',
               parameters: Form.serialize(form),
               onLoading: function(transport) {                        
                   $('help-form-content').update(message);
               },
               onSuccess: function(transport) {
                    $('help-form-content').update(transport.responseText);
               }
            });
	}
}

var questionAjax = new QuestionAjax();
