Type.registerNamespace('WebMarkers');
WebMarkers.webmarkers=function() {
WebMarkers.webmarkers.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebMarkers.webmarkers.prototype={
BetaSignup:function(email,comment,succeededCallback, failedCallback, userContext) {
return this._invoke(WebMarkers.webmarkers.get_path(), 'BetaSignup',false,{email:email,comment:comment},succeededCallback,failedCallback,userContext); }}
WebMarkers.webmarkers.registerClass('WebMarkers.webmarkers',Sys.Net.WebServiceProxy);
WebMarkers.webmarkers._staticInstance = new WebMarkers.webmarkers();
WebMarkers.webmarkers.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; WebMarkers.webmarkers._staticInstance._path = value; }
WebMarkers.webmarkers.get_path = function() { return WebMarkers.webmarkers._staticInstance._path; }
WebMarkers.webmarkers.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
WebMarkers.webmarkers._staticInstance._timeout = value; }
WebMarkers.webmarkers.get_timeout = function() { 
return WebMarkers.webmarkers._staticInstance._timeout; }
WebMarkers.webmarkers.set_defaultUserContext = function(value) { 
WebMarkers.webmarkers._staticInstance._userContext = value; }
WebMarkers.webmarkers.get_defaultUserContext = function() { 
return WebMarkers.webmarkers._staticInstance._userContext; }
WebMarkers.webmarkers.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; WebMarkers.webmarkers._staticInstance._succeeded = value; }
WebMarkers.webmarkers.get_defaultSucceededCallback = function() { 
return WebMarkers.webmarkers._staticInstance._succeeded; }
WebMarkers.webmarkers.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; WebMarkers.webmarkers._staticInstance._failed = value; }
WebMarkers.webmarkers.get_defaultFailedCallback = function() { 
return WebMarkers.webmarkers._staticInstance._failed; }
WebMarkers.webmarkers.set_path("/services/webmarkers.asmx");
WebMarkers.webmarkers.BetaSignup= function(email,comment,onSuccess,onFailed,userContext) {WebMarkers.webmarkers._staticInstance.BetaSignup(email,comment,onSuccess,onFailed,userContext); }
