﻿/* Analytic dependancies */
// JULY2008 - AF - 06/26/2008 - QC 8032 - Add google_tracking.js to the include
// JULY2008 - AF - 06/27/2008 - QC 8032 - Have to comment out the google_tracking include as there is an issue pulling the js from google over https.
include('/AppSecure/js/webtrends.js');
include('/AppSecure/js/google_tracking.js');

/* Write the camapaign related query string parameters to a cookie if they exist.  */
var campaign_name = getQueryStringVariable("WT.mc_id");

if (campaign_name != null)
{
    var now = new Date();
    now.setTime(now.getTime() + 365 * 24 * 60 * 60 * 1000);
    setCookie("campaign", campaign_name, now, "/");
}
