<!--
// default tel number top left on all pages
var topleftfreephonenumber = '0800 29 88 707';

var GetAQuoteLink = 'https://www.insure4retirement.co.uk/index.aspx';

// check for the temporary cookie 'idltelno' which is set by a campaign redirect - see /campaign_example/index.htm
// if set the override the default tel number with the cookie value
var idltelno = readCookie('idltelno');
if (idltelno) var topleftfreephonenumber = idltelno;

// check for the temporary cookie 'CampaignID' which is set by a campaign redirect - see /campaign_example/index.htm
// if set the override the default get a quote link with the cookie value
var CampaignID = readCookie('CampaignID');
if (CampaignID) var GetAQuoteLink = GetAQuoteLink + '?CampaignID=' + CampaignID;
//-->