﻿// Dan Sylvester
//  My name stays at the top.

/// <reference name="MicrosoftAjax.js"/>



function Button2_onclick() {
        ret = WebService.HelloWorld(this.Oncomplete, this.OnTimeout, this.OnErrorx);
}

function Oncomplete(args) {
    alert(args);
}

function OnTimeout(args) {
    alert(args);
}
function OnErrorx(args) {
    alert(args);
}





//REQUIRED: Notifies the ScriptManager that the script has been loaded.    
if (typeof(Sys) !== "undefined") Sys.Application.notifyScriptLoaded();