//LLNX Custom Tracking Code if (action == null){ var action = ""; //ACTION CODE } if (amount == null){ var amount = "0"; //ACTION AMOUNT (LEAVE BLANK OR 0 IF NO AMOUNT) } if (order == null){ var order = ""; //INSERT UNIQUE ORDER NUMBER } var securehost = (("https:" == document.location.protocol) ? "https://" : "http://"); var scriptlocation = securehost + "sharepoint.prolecto.com/track/track.asp"; // LLNX Get cookie information function getCookie(name) { var dc = document.cookie; var prefix = name + "="; var begin = dc.indexOf("; " + prefix); if (begin == -1) { begin = dc.indexOf(prefix); if (begin != 0) return null; } else begin += 2; var end = document.cookie.indexOf(";", begin); if (end == -1) end = dc.length; return unescape(dc.substring(begin + prefix.length, end)); } //close getCookie var LLNXUID = getCookie("LLNXTrackingUID") var LLNXUserName = getCookie("LLNXTrackingUserName") var LLNXCompanyName = getCookie("LLNXTrackingCompanyName") var pagedata = 'mtac=' + escape(action) + '&mta=' + amount + '&mto=' + escape(order) + '&mtr=' + escape(document.referrer) + '&mtt=2&mts=' + window.screen.width + 'x' + window.screen.height + '&mtz=' + Math.random() + '&LLNXUID=' + LLNXUID + '&LLNXUserName=' + LLNXUserName + '&LLNXCompanyName=' + LLNXCompanyName document.write ('');