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