function Validate(bindingGroup) {
}

function ShowError(bindingGroup, errors) {
}

// global variables
var _appService = new InsWeb.IService();

// default callback functions
function onSuccess(result, userContext, method) {
        return;
}
function onFail(exception, userContext, method) {
    var lblError = document.getElementById('error');
    if (lblError && exception)
        lblError.innerHTML = exception.get_message();
}

_appService.get_path = function() { return 'http://services.insurancerates.com/InsWeb.Tools.API/Service.svc'; }





_appService.Init(onSuccess, onFail);
