// ### Array Helper Functions ###

function tiiArrayContains (array, value) {
	if (array != null) {
		var al = array.length;
		for (var i = 0; i < al; i++) {
			if (array[i] == value) return true;
		}
	}
	return false;
}

// ### Key=Value; Functions ###

function tiiHashKeys(string) {
	var keys = null;
	if (string != null) {
		var hash = string.split(';');
		var hl = hash.length - 1;
		if(hl > 0){
			keys = new Array();
			for(var i = 0; i < hl; i++){
				var data = hash[i].split('=');
				keys[i] = data[0].replace(' ', '');
			}
		}
	}
	return keys;
}

function tiiHashGet(string, key) {
	var value = null;
	if (string != null) {
		var keyStart = key + '=';
		var offset = string.indexOf(keyStart);
		if (offset != -1) {
			offset += keyStart.length;
			var end = string.indexOf(';', offset);
			if (end == -1) {
				end = string.length;
			}
			value = string.substring(offset, end);
		}
	}
	return value;
}

function tiiHashSet(string, key, value) {
	var string = tiiHashDelete(string, key);
	var newValue = key + '=' + value + ';';
	if (string != null) newValue = newValue + string;
	return newValue;
}

function tiiHashDelete(string, key) {
	var oldValue = tiiHashGet(string, key);
	var newString = string;
	if (oldValue != null) {
		var search = key + '=';
		var start = string.indexOf(search);
		var offset = start + search.length;
		var end = string.indexOf(';', offset) + 1;
		if (end == -1) end = string.length;
		newString = string.slice(0,start) + string.slice(end,string.length);
		return newString;

	}
	return newString;
}

function tiiGetQueryParamValue(param) {
	var startIndex;
	var endIndex;
	var valueStart;

	var qs = document.location.search;
	var detectIndex = qs.indexOf( "?" + param + "=" );
	var detectIndex2 = qs.indexOf( "&" + param + "=" );
	var key = "&" + param + "=";
	var keylen = key.length;

	if (qs.length > 1) {
		if (detectIndex != -1) {
			startIndex = detectIndex;
		} else if (detectIndex2 != -1) {
			startIndex = detectIndex2;
		} else {
			return null;
		}

		valueStart = startIndex + keylen;

		if (qs.indexOf("&", valueStart) != -1) {
			endIndex = qs.indexOf("&", startIndex + 1)
		} else {
			endIndex = qs.length
		}

		return (qs.substring(qs.indexOf("=", startIndex) + 1, endIndex));
	}

	return null;
}

// ### Date/Time Functions ###

function tiiDateGetOffsetMinutes(minutes)	{ var today = new Date(); return today.getTime() + (60000) * minutes;}
function tiiDateGetOffsetHours(hours)		{ var today = new Date(); return today.getTime() + (3600000) * hours; }
function tiiDateGetOffsetDays(days)			{ var today = new Date(); return today.getTime() + (86400000) * days; }
function tiiDateGetOffsetWeeks(weeks)		{ var today = new Date(); return today.getTime() + (604800000) * weeks; }
function tiiDateGetOffsetMonths(months)		{ var today = new Date(); return today.getTime() + (259200000) * months; }
function tiiDateGetOffsetYears(years)		{ var today = new Date(); return today.getTime() + (31536000000) * years; }
// ### Core Cookie Functions ###

function tiiCookieExists(cookieName) {
	return tiiArrayContains(tiiCookieGet(), cookieName);
}

function tiiCookieGet(cookieName) {
	if (arguments.length == 0) {
		return tiiHashKeys(document.cookie);
	}

	var cookie = tiiHashGet(document.cookie, cookieName);
	if (cookie != null) cookie = unescape(cookie);
	return cookie;
}

function tiiCookieSet(cookieName, cookieValue, domain, path, expires, secure) {
	if (expires != null) {
		expire_date = new Date();
		expire_date.setTime(expires);
	}
	var curCookie = cookieName + '=' + escape(cookieValue)
		+ ((expires) ? '; expires=' + expire_date.toGMTString() : '')
		+ ((path) ? '; path=' + path : '')
		+ ((domain) ? '; domain=' + domain : '')
		+ ((secure) ? '; secure' : '');
	document.cookie = curCookie;
}

function tiiCookieSetUnescape(cookieName, cookieValue, domain, path, expires, secure) {
	if (expires != null) {
		expire_date = new Date();
		expire_date.setTime(expires);
	}
	var curCookie = cookieName + '=' + cookieValue
		+ ((expires) ? '; expires=' + expire_date.toGMTString() : '')
		+ ((path) ? '; path=' + path : '')
		+ ((domain) ? '; domain=' + domain : '')
		+ ((secure) ? '; secure' : '');
	document.cookie = curCookie;
}

function tiiCookieDelete(cookieName) {
	tiiCookieSet(cookieName, null, null, null, '', 0);
}

// ### Core Chip Functions ###
function tiiCookieChipGet(cookieName, chipName) {
	if (arguments.length == 1) {
		return tiiHashKeys(tiiCookieGet(cookieName));
	}
	return tiiHashGet(tiiCookieGet(cookieName), chipName);
}

function tiiCookieChipSet(cookieName, chipName, chipValue, domain, path, expire, secure) {
	var new_cookieValue = tiiHashSet(tiiCookieGet(cookieName), chipName, chipValue);
	tiiCookieSet(cookieName, new_cookieValue, domain, path, expire, secure);
}

function tiiCookieChipDelete(cookieName, chipName, domain, path, expire, secure) {
	var new_cookieValue = tiiHashDelete(tiiCookieGet(cookieName), chipName);
	if (new_cookieValue == null) new_cookieValue = '';
	tiiCookieSet(cookieName, new_cookieValue, domain, path, expire, secure);
}

// ### Permanent Cookie/Chip Functions ###
function tiiPermCookieChipGet(chipName) {
	return tiiCookieChipGet('tii_perm', chipName);
}

function tiiPermCookieChipSet(chipName, chipValue) {
	tiiCookieChipSet('tii_perm', chipName, chipValue, null, '/', tiiDateGetOffsetYears(2), 0);
}

function tiiPermCookieChipDelete(chipName) {
	tiiCookieChipDelete('tii_perm', chipName, null, '/', tiiDateGetOffsetYears(2), 0);
}

// ### Session Cookie/Chip Functions ###
function tiiSessCookieChipGet(chipName) {
	return tiiCookieChipGet('tii_sess', chipName);
}

function tiiSessCookieChipSet(chipName, chipValue) {
	tiiCookieChipSet('tii_sess', chipName, chipValue, null, '/', null, 0);
}

function tiiSessCookieChipDelete(chipName) {
	tiiCookieChipDelete('tii_sess', chipName, null, '/', null, 0);
}
 
/**
 * FlashObject is (c) 2006 Geoff Stearns and is released under the MIT License:
 */
if(typeof com=="undefined"){var com=new Object();}
if(typeof com.deconcept=="undefined"){com.deconcept=new Object();}
if(typeof com.deconcept.util=="undefined"){com.deconcept.util=new Object();}
if(typeof com.deconcept.FlashObjectUtil=="undefined"){com.deconcept.FlashObjectUtil=new Object();}
com.deconcept.FlashObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a,_b){
//this.instanceof=null;
if(!document.createElement||!document.getElementById){return;}
this.DETECT_KEY=_b?_b:"detectflash";
this.skipDetect=com.deconcept.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
this.useExpressInstall=_7;
if(_1){this.setAttribute("swf",_1);}
if(id){this.setAttribute("id",id);}
if(w){this.setAttribute("width",w);}
if(h){this.setAttribute("height",h);}
if(_5){this.setAttribute("version",new com.deconcept.PlayerVersion(_5.toString().split(".")));}
this.installedVer=com.deconcept.FlashObjectUtil.getPlayerVersion(this.getAttribute("version"),_7);
if(c){this.addParam("bgcolor",c);}
var q=_8?_8:"high";
this.addParam("quality",q);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){this.setAttribute("redirectUrl",_a);}
};
com.deconcept.FlashObject.prototype={setAttribute:function(_e,_f){
this.attributes[_e]=_f;
},getAttribute:function(_10){
return this.attributes[_10];
},addParam:function(_11,_12){
this.params[_11]=_12;
},getParams:function(){
return this.params;
},addVariable:function(_13,_14){
this.variables[_13]=_14;
},getVariable:function(_15){
return this.variables[_15];
},getVariables:function(){
return this.variables;
},createParamTag:function(n,v){
var p=document.createElement("param");
p.setAttribute("name",n);
p.setAttribute("value",v);
return p;
},getVariablePairs:function(){
var _19=new Array();
var key;
var _1b=this.getVariables();
for(key in _1b){_19.push(key+"="+_1b[key]);}
return _19;
},getFlashHTML:function(){
var _1c="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){
this.addVariable("MMplayerType","PlugIn");
}
_1c="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_1c+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var _1d=this.getParams();
_1d["instanceOf"]=null;
for(var key in _1d){_1c+=[key]+"=\""+_1d[key]+"\" ";}
var _1f=this.getVariablePairs().join("&");
if(_1f.length>0){_1c+="flashvars=\""+_1f+"\"";}
_1c+="/>";
}else{
if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");}
_1c="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_1c+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _20=this.getParams();
for(var key in _20){_1c+="<param name=\""+key+"\" value=\""+_20[key]+"\" />";}
var _22=this.getVariablePairs().join("&");
if(_22.length>0){_1c+="<param name=\"flashvars\" value=\""+_22+"\" />";
}_1c+="</object>";}
return _1c;
},write:function(_23){
if(this.useExpressInstall){
var _24=new com.deconcept.PlayerVersion([6,0,65]);
if(this.installedVer.versionIsValid(_24)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
document.title=document.title.slice(0,47)+" - Flash Player Installation";
this.addVariable("MMdoctitle",document.title);}
}else{this.setAttribute("doExpressInstall",false);}
if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){
var n=(typeof _23=="string")?document.getElementById(_23):_23;
if(typeof n != 'undefined'){
	n.innerHTML=this.getFlashHTML();
}else{
	document.writeln(this.getFlashHTML());
}
}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}}};


function tiiVBGetFlashVersionExists() {
	var result = true;
	try {
		var dontcare = tiiVBGetFlashVersion( 3 ); 
	} catch(e) { result = false }
	
	
	return result;
}

com.deconcept.FlashObjectUtil.getPlayerVersion=function(_26,_27){
	var _28 = new com.deconcept.PlayerVersion(0,0,0);
	if ( navigator.plugins && navigator.mimeTypes.length ){
		var x = navigator.plugins["Shockwave Flash"];
		if ( x && x.description ){
			_28 = new com.deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));
		}
	} else {
		try {
			if ( ! tiiVBGetFlashVersionExists() ) {
				
				
				var axo = new ActiveXObject( "ShockwaveFlash.ShockwaveFlash" );
				for ( var i = 3; axo != null; i++ ) {
					axo = new ActiveXObject( "ShockwaveFlash.ShockwaveFlash." + i );
					_28 = new com.deconcept.PlayerVersion( [ i, 0, 0 ] );
				}
			} else {
				
				
				var versionStr = "";
				for ( var i = 25; i > 0 ; i-- ) {
					var tempStr = tiiVBGetFlashVersion( i );
					if ( tempStr != "" ) {
						versionStr = tempStr;
						break;
					}
				}
				if ( versionStr != "" ) {
					
					var splits = versionStr.split(" ");
					var splits2 = splits[1].split(",");
					_28 = new com.deconcept.PlayerVersion( [ splits2[0], splits2[1], splits2[2] ] );
				}
			}
		} catch(e) {}
		if (_26&&_28.major>_26.major ){return _28;}
		if ( !_26 || ((_26.minor!=0||_26.rev!=0)&&_28.major==_26.major) || _28.major != 6 || _27){
			try {
				_28 = new com.deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
			} catch(e) {}
		}
	}

	
	return _28;
};

com.deconcept.PlayerVersion=function(_2c){
this.major=parseInt(_2c[0])||0;
this.minor=parseInt(_2c[1])||0;
this.rev=parseInt(_2c[2])||0;
};
com.deconcept.PlayerVersion.prototype.versionIsValid=function(fv){
if(this.major<fv.major){return false;}
if(this.major>fv.major){return true;}
if(this.minor<fv.minor){return false;}
if(this.minor>fv.minor){return true;}
if(this.rev<fv.rev){return false;}
return true;
};

com.deconcept.util={getRequestParameter:function(_2e){
var q=document.location.search||document.location.hash;
if(q){var _30=q.indexOf(_2e+"=");
var _31=(q.indexOf("&",_30)>-1)?q.indexOf("&",_30):q.length;
if(q.length>1&&_30>-1){
return q.substring(q.indexOf("=",_30)+1,_31);}}return "";
},removeChildren:function(n){
while(n.hasChildNodes()){
n.removeChild(n.firstChild);}}};
if(Array.prototype.push==null){
Array.prototype.push=function(_33){
this[this.length]=_33;
return this.length;};}

var getQueryParamValue=com.deconcept.util.getRequestParameter;
var FlashObject=com.deconcept.FlashObject;
var PlayerVersion=com.deconcept.PlayerVersion;

function tiiGetFlashVersion() {
	var flashversion = 0;
	if (navigator.plugins && navigator.plugins.length) {
		var x = navigator.plugins["Shockwave Flash"];
		if(x){
			if (x.description) {
				var y = x.description;
				flashversion = y.charAt(y.indexOf('.')-1);
			}
		}
	} else {
		result = false;
		for(var i = 15; i >= 3 && result != true; i--){
			execScript('on error resume next: result = IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.'+i+'"))','VBScript');
			flashversion = i;
		}
	}
	return flashversion;
}

function tiiDetectFlash(ver) {
	if (tiiGetFlashVersion() >= ver) {
		return true;
	} else {
		return false;
	}
}

 
/*-----------------------------------------------------------------------------*/
/* MB - 10/23/07 - Brightcove Wrapper / JavaScript support functions           */
/* Function: TiiBcLcDcTracker - Called by Brightcove Flash wrapper to notify   */ 
/* DoubleClick / DART that a Lightningcast ad was served                       */
/* Requirements: adsitename i.e. &adsitename=3745.mre needs to be passed to    */
/* the BC wrapper. If no adzone is specified the default value will be used    */
/*-----------------------------------------------------------------------------*/
function TiiBcLcDcTracker (omniAdSiteName,omniAdZone) {
	var defaultFlg = 'false';
	if (omniAdZone == 'default') {  
		omniAdZone = 'video_main_bc_lightningcast';
		defaultFlg = 'true';
	}    
	var bcLCDCTmpPixel = new Image();
	bcLCDCTmpPixel.src = 'http://ad.doubleclick.net/ad/'+omniAdSiteName+'/'+omniAdZone+';sz=1x1;ord='+Math.ceil(1+1E12*Math.random());
	return 'Tracking successful - adSiteName="'+omniAdSiteName+'" ,adZone="'+omniAdZone+ '" defaultFlg="'+defaultFlg+'"'; 
}    
	         
function TiiBrightcovePlayer() {
	this.cfg = new Array();
	this.flashUrl = "/web/tii/shared/swf/BrightcoveWrapper.swf";
	this.flashUrl = "/shared/static/swf/BrightcoveWrapper.swf";
	this.bgcolor = "#ffffff";

	// Default cfg
	this.cfg["objectId"] = "bcVideoPlayer";
	this.cfg["divId"] = "";
	this.cfg["testmode"] = "";
	this.cfg["autostart"] = false;
	this.cfg["lctracking"] = "";
	this.cfg["adsitename"] = "";
	this.cfg["lcadzone"] = ""; 
	this.setParam = TiiBcSetParam;
	this.write = TiiBcWrite;
}

function TiiBcSetParam(key, value) {
	this.cfg[key] = value;
}

function TiiBcWrite() {
	var fo = new FlashObject(this.flashUrl, this.cfg["objectId"], this.cfg["width"], this.cfg["height"], 8, this.bgcolor);
	
	fo.addParam("allowScriptAccess", "always");
	fo.addParam("menu", "false");
	fo.addParam("quality", "high");
	fo.addParam("bgcolor", this.bgcolor);
	fo.addParam("loop", "false");
	fo.addParam("wmode", "opaque");

	fo.addVariable("account", this.cfg["account"]);
	fo.addVariable("channel", this.cfg["siteId"]);
	fo.addVariable("prop16", this.cfg["channel"]);

	fo.addVariable("playerwidth", this.cfg["width"]);
	fo.addVariable("playerheight", this.cfg["height"]);
	fo.addVariable("playerid", this.cfg["playerId"]);
	fo.addVariable("videoid", this.cfg["videoId"]);
	fo.addVariable("lineupid", this.cfg["lineupId"]);
	fo.addVariable("autostart", this.cfg["autostart"]);
	
	fo.addVariable("lctracking", this.cfg["lctracking"]); // MB - added 10/23/07
	fo.addVariable("adsitename", this.cfg["adsitename"]); // MB - added 10/23/07
	fo.addVariable("lcadzone", this.cfg["lcadzone"]);     // MB - added 10/23/07
	
	fo.addVariable("objectid", this.cfg["objectId"]);	
	fo.addVariable("adserverurl", this.cfg["adServerUrl"]);
	if (this.cfg["testmode"] != "") {
		fo.addVariable("testmode", this.cfg["testmode"]);	
	}
	
	fo.altTxt = "";

	if (this.cfg["divId"] != "") {
		fo.write(this.cfg["divId"]);
	} else {
		fo.write();
	}
}

function tiiQuigoSetEnabled(b) {
	_tiiQuigoEnabled = b;
}

function tiiQuigoIsEnabled() {
	if (typeof(_tiiQuigoEnabled) == "boolean") {
		return _tiiQuigoEnabled;
	}
	return true;
}

function tiiQuigoWriteAd(pid, placementId, zw, zh, ps) {
	if (tiiQuigoIsEnabled()) {
		qas_writeAd(placementId, pid, ps, zw, zh, 'ads.adsonar.com');
	}
}


var tcdacmd="dt";

var macTest=(navigator.userAgent.toLowerCase().indexOf("macintosh") >= 0);

function IMArticle() {
	if (isInAolClient()) {
		document.location.href = "aol://9293::Here's something that may interest you from InStyle.com: <a href='" + document.location.href + "'>" + document.location.href + "</a>";
	} else {
		document.location.href = "aim:goim?message=Here's+something+that+may+interest+you+from+InStyle.com:+" + document.location.href;
	}
	return false;
}

function openWindow (url) {
	var argv = openWindow.arguments;
	var argc = argv.length;
	
	if (argc == 1) {
		var handle = window.open(url);
	} else if (argc == 2) {
		var handle = window.open(url,argv[1]);
	} else {
		var handle = window.open(url,argv[1],argv[2]);
	}
	
	handle.focus();
}

function showHeaderLogo(channelID) {

	if (channelID != 0) {
		document.getElementById('headerHomeLogo').src = "/logo_channel.gif"
	}
	
	if (document.getElementById('headerChannelLogo' + channelID)) {
		document.getElementById('headerChannelLogo' + channelID).style.display = "";
	}

	return;
}


function showCenteredPopup(name, url, features, width, height) {
	
	// example usage:
	// showCenteredPopup("foo", "http://www.cnn.com", null, 640, 480);
	
	var top = (screen.height / 2) - height / 2;
	var left = (screen.width / 2) - width / 2;

	if (features == null || features == '') {
		features = "scrollbars=yes,toolbar=no,menubar=no,status=no,location=no";
	}

	window.open(url, name, features + ",top=" + top + ",left=" + left + ",width=" + width + ",height=" + height);

}

// this name is used as a target by links in popup windows
// that need to open in the main window
function nameThisWindow(winName) {
	if (window.opener) {
		window.opener.name=winName;
	} else {
		window.name=winName;
	}
}	

function showPopupBackButton() {
	if (history.length > 0) {
		document.write('<a href="javascript:history.back()"><img src="/arrow_left.gif" alt="Back" border="0" style="vertical-align:middle" /> BACK</a>'); 
	}
}




var ie4Test=document.all&&(navigator.userAgent.toLowerCase().indexOf("msie") >= 0);
var dom=document.getElementById&&(navigator.userAgent.indexOf("Opera")==-1);
var macTest=(navigator.userAgent.toLowerCase().indexOf("macintosh") >= 0);
var firefoxTest=(navigator.userAgent.toLowerCase().indexOf("firefox") >= 0);
var ie      = 1;
var mac     = 2;
var firefox = 3; 
var other   = 4;

function isPrintWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}
 
function iswEmailToFriend(pageTitle,pageURL) {
	if(pageTitle == "") {
	    var pageTitle = escape(self.document.title);
	} else {
	    var pageTitle = escape(pageTitle);
	}
	if(pageURL == "") {
	    var pageURL   = escape(self.document.URL);
	} else {
	    var pageURL   = escape(pageURL);
	}
	//V6 Migration - email server change - sdalvi 
    var formURL   = "http://cgi.instyleweddings.com/cgi-bin/mail/mailurl2friend.cgi?url=" + pageURL + "&group=weddings&title=" + pageTitle + "&path=/weddings/mail/templates";
    window.open(formURL, "emailpop","height=500,width=435,resizable,scrollbars");
    return false;
}
 
function reloadOmniture(toPage) {
	var omnitureFrame = document.getElementById("pageCounter");
	if (omnitureFrame) {
		var frameSrc = omnitureFrame.src;
		var commaIndex = frameSrc.lastIndexOf(",");
		var underScoreIndex = frameSrc.lastIndexOf("_");
		if (commaIndex > -1 && underScoreIndex > -1) { 
			var currentNumber = frameSrc.substring(underScoreIndex + 1, commaIndex)
			var begURL = frameSrc.substring(0,underScoreIndex + 1);
			var endURL = frameSrc.substring(commaIndex, frameSrc.length);
			frameSrc = begURL.concat(toPage, endURL);
			omnitureFrame.src = frameSrc;
		}
	}
}

//track custom link for omniture. the following are the type of links
//-exit links: e
//-download: d
//-custom links: o 
function trackLink(lnkType, lnkObj, lnkName, account) {
	if (lnkType) {
		s_linkType = lnkType;
	}
	
	if (lnkName) {
		s_linkName = lnkName;
	}
	
	if (lnkObj) {
		s_lnk = s_co(lnkObj);
	}
	
	if (account) {
		if (typeof s_gs != "undefined") {
			s_gs(account);
		}
	}
	
	return;
	
}

siteId = "3475.inw";
cmSiteId = "cm.inw";



	var adConfig = new TiiAdConfig(siteId);
	adConfig.setCmSitename(cmSiteId);
	
	if (location.search.indexOf("xid=cnn") >= 0) {
		adConfig.setPopups(false);
	}

	if (location.search.indexOf("google=yes") >= 0) {
		adConfig.setPopups(false);
	}

	if (location.search.indexOf("yahoo=yes") >= 0) {
		adConfig.setPopups(false);
	}
// fixes IE background flickering
try {
	document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}

 
adConfig.setRevSciTracking(true);


adConfig.setTacodaTracking(false);

