
new_adsAreDisabled = false;

function doesCookieExist(label) { // simply returns the appropriate cookie information
 var labelLen = label.length;
 var cLen = document.cookie.length;
 var new_cLen = 0;
 var i = 0;
 while (i < cLen) {
	var j = i + labelLen;
	if (document.cookie.substring(i,i+3) == "ATA") { // we don't want the ATABeacon cookie
		i += 4;
	}
	if (document.cookie.substring(i,j) == label) {
		var cEnd = document.cookie.indexOf(";",j);
		if (cEnd == -1) {
			cEnd = document.cookie.length;
		}
	new_cLen = unescape(document.cookie.substring(j,cEnd)).length;
	}
 i++;
 } // end while
 if (new_cLen > 0) { 
 	return true; 
 } else { 
	return false; 
 }
} // end function

if ( doesCookieExist('76hgd762hlk') && doesCookieExist('plprof') ) {
new_adsAreDisabled = true;
}

