﻿function servicePopulate(sp)
{
    populateServicePoint(sp);
}

function populateServicePoint(sp) 
{
    WebizaCommerceLite.WebServicePoints.PopulateServicePoint(sp, OnSucceeded);
}

function OnSucceeded(result, eventArgs)
{
    //alert(result);
    document.getElementById("ctl00_ContentPlaceHolder1_serviceListPanel").innerHTML=result;
}

