function TrackClick(entityId, entityType, resourceId, resourceType)
{
    StatisticsService.ClickResource(entityId, entityType, resourceId, resourceType);
}

function TrackView(entityId, entityType, resourceId, resourceType)
{
    StatisticsService.ViewResource(entityId, entityType, resourceId, resourceType);
}

function CompleteCallback(serviceResult)
{
    //Do Nothing!
}

function ErrorCallback(serviceError)
{
    alert(serviceError.get_message());
}
