/**
 * Survey Callout
 * Version 3.1
*/
//alert("current cookie reads: " + document.cookie);
// Survey information and statistics
var xGroup = 1; // 1 of x are eligible to particiate - set to 1 for everyone, set to 0 for no one
var yGroup = 4;  // 1 of y are eligible for Pre survey
var zGroup = 1;  // 1 of z are eligible for Post survey
var numOfPagesToView = 3;  // Number of pages the viewer sees before being given post survey
var numOfPagesToViewForFindDoc = 1;  // Number of pages the viewer sees before being given post survey if clicking "Find a Doc"
var preSurveyUrl = "http://resp.survey01.net/servlet/survey?surveyId=MzMzNAS2";
var postSurveyUrl = "http://resp.survey01.net/servlet/survey?surveyId=MzMzNwS2";
var widthOfPopUp = 590; // Popup Survey Width
var heightOfPopUp = 600; // Popup Survey Height
var sessionIdneeded = true; // Is a session ID needed for this survey?  IF set to true will look for the session Id cookie
var sessionIdName = "sessionId"; // Name of the session ID variable on the query
var recontactDateName = "recontactDate"; // Name of the re contact date variable on the query
var pageCountName = "pageCount"; // Name of the page count date variable on the query
var currentDate = new Date(); // Current Date and time for time stamping 
var numOfMonthsAhead = 3; // Number of Months to wait before contacting
var recontactDate = (currentDate.getMonth() + 1 + numOfMonthsAhead) + "|" + currentDate.getDate() + "|" + currentDate.getFullYear();
var pageIdTrigger = "DR10a";
// Callout config
var timerMax = 20;
var timerCalloutMax = 20;
var surveyDistance = 250; // How far out the callout will go
var imagePath = "/images/survey/";
var formName = "CalloutSurveyForm"; // name and Id of the survey form
var logo = "logo_botox_2.gif";
var logoWidth = 113;
var logoHeight = 60;
var logoAlt = "BOTOX&reg; Cosmetic";
var calloutHeaderText = "Share your thoughts and we'll donate to your favorite charity";
var calloutText = "Does our Web site give you the information you need? Complete our quick survey, and we’ll make a donation to the charity you select. TAKES LESS THAN 2 MINUTES!";
var confirmButton = "ok_btn.gif";
var confirmButtonAlt = "Respond Now";
var confirmButtonWidth = 102;
var confirmButtonHeight = 20;
var cancelButton = "cancel_btn.gif";
var cancelButtonAlt = "Cancel";
var cancelButtonWidth = 63;
var cancelButtonHeight = 20;

// Cookie Info
var pageCountCookie = "pageCount";
var trackedStatusCookie = "tracked";
var surveyCookie = "survey";
var surveyDateTime = "callOutDateTime";
var calloutResponse = "callOutResponse";
var calloutSessionId = "SessionID";
var pageId = "pageId";
var cookieExpires = 365;