SMSMan_class = Class.create();
SMSMan_class.prototype = (new AjaxPro.Request()).extend({
	SendMessage: function(strCarrier, strPhoneNumber, strMessage, strEmail, callback) {
		return this.invoke("SendMessage", {"strCarrier":strCarrier, "strPhoneNumber":strPhoneNumber, "strMessage":strMessage, "strEmail":strEmail}, callback);
	},
	initialize: function() {
		this.url = "/ajaxpro/incrediballistic.com.applications.clsSMSMan,App_Code.ashx";
	}
})
SMSMan = new SMSMan_class();

