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

