﻿<!--

    function CallLogClickThrough(sCodeName, sPath, sObjectID) {

        //Get the controls
        var sResult = '';

        //Call server side function
        AjaxCalls.LogClickThrough(sCodeName, sPath, sObjectID, OnCallLogClickThroughComplete, OnCallLogClickThroughError, sResult);
    }

    function OnCallLogClickThroughComplete(result, txtresult, methodName) {

    }

    function OnCallLogClickThroughError(error, userContext, methodName) {
        if (error !== null) {

        }
    }
// -->