﻿// the Web service methods succeeds.
function SucceededCallback(result, userContext, methodName)
{    
    alert("RESULT: " + result);   
        
    switch(methodName)
    {
        
    }   
   // alert(userContext);  
}



// Callback function invoked when the call to 
// the Web service methods fails.
function FailedCallback(error, userContext, methodName) 
{
    if(error !== null) 
    {
       alert("ERROR: " +          error.get_message());
    }
}

if (typeof(Sys) !== 'undefined') Sys.Application.notifyScriptLoaded();
