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