//HPRO PRODUCTION AD RESTRICTIONS

// turn off all superstitial tags on the home page
var restrictionOne = new AdRestriction();
restrictionOne.addParameter("UniqueId", "HGTV-SECTION-3655-1");
restrictionOne.addParameter("adtype", "SUPERSTITIAL");
restrictionOne.isActive = false;
restrictionOne.isIframe = false;

/*
// turn off text link in positions 4 on the home page
var restrictionTwo = new AdRestriction();
restrictionTwo.addParameter("UniqueId", "HGTV-SECTION-3655-1");
restrictionTwo.addParameter("adtype", "SPONSORSHIP");
restrictionTwo.addParameter("PagePos", "4");
restrictionTwo.isActive = false;
restrictionTwo.isIframe = false;
*/


/*
// turn off text link in positions 5 on the home page
var restrictionThree = new AdRestriction();
restrictionThree.addParameter("UniqueId", "HGTV-SECTION-3655-1");
restrictionThree.addParameter("adtype", "SPONSORSHIP");
restrictionThree.addParameter("PagePos", "5");
restrictionThree.isActive = false;
restrictionThree.isIframe = false;
*/

/*
// turn off pushdown adtag across entire site
var restrictionFour = new AdRestriction();
restrictionFour.addParameter("adtype", "PUSHDOWN");
restrictionFour.isActive = false;
restrictionFour.isIframe = false;
*/

var adRestrictionManager = new AdRestrictionManager();
adRestrictionManager.restriction.push(restrictionOne);
// adRestrictionManager.restriction.push(restrictionTwo);
// adRestrictionManager.restriction.push(restrictionThree);
// adRestrictionManager.restriction.push(restrictionFour);


