var WSFuctions=function() {
WSFuctions.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WSFuctions.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WSFuctions._staticInstance.get_path();},
SendMail:function(content,succeededCallback, failedCallback, userContext) {
/// <param name="content" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'SendMail',false,{content:content},succeededCallback,failedCallback,userContext); }}
WSFuctions.registerClass('WSFuctions',Sys.Net.WebServiceProxy);
WSFuctions._staticInstance = new WSFuctions();
WSFuctions.set_path = function(value) {
WSFuctions._staticInstance.set_path(value); }
WSFuctions.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return WSFuctions._staticInstance.get_path();}
WSFuctions.set_timeout = function(value) {
WSFuctions._staticInstance.set_timeout(value); }
WSFuctions.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return WSFuctions._staticInstance.get_timeout(); }
WSFuctions.set_defaultUserContext = function(value) { 
WSFuctions._staticInstance.set_defaultUserContext(value); }
WSFuctions.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return WSFuctions._staticInstance.get_defaultUserContext(); }
WSFuctions.set_defaultSucceededCallback = function(value) { 
 WSFuctions._staticInstance.set_defaultSucceededCallback(value); }
WSFuctions.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return WSFuctions._staticInstance.get_defaultSucceededCallback(); }
WSFuctions.set_defaultFailedCallback = function(value) { 
WSFuctions._staticInstance.set_defaultFailedCallback(value); }
WSFuctions.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return WSFuctions._staticInstance.get_defaultFailedCallback(); }
WSFuctions.set_path("/WSFuctions.asmx");
WSFuctions.SendMail= function(content,onSuccess,onFailed,userContext) {
/// <param name="content" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
WSFuctions._staticInstance.SendMail(content,onSuccess,onFailed,userContext); }

