﻿

// This function calls the Web service method and 
// passes the event callback function.  
function BannerPress(brow) {
    Services.SnSkipass.WsSponsor.ClickBanner(brow, SucceededCallback);
}


// This is the callback function invoked if the Web service
// succeeded.
// It accepts the result object as a parameter.
function SucceededCallback(result, eventArgs) {
    window.status = result;
}

if (typeof (Sys) !== "undefined") Sys.Application.notifyScriptLoaded();

