﻿// JScript File

function RunLeadCaptureScripts(strType,intSource,sParentInfo) {
    //alert('testing');
    //Get Browser Data gtom the cookie.
    var strBrowserData = readCookie("MIM_BRowserInfo");
    
    LeadCaptureService.RunLeadCapture(strType,intSource,sParentInfo,strBrowserData,CaptureSuccess, CaptureFail);       
    
}

function CaptureSuccess(e){
    
    if (e != null) {	
    
    }
}

function CaptureFail(){
    
}

