// init hbx
var _hbEC=0,_hbE=new Array;function _hbEvent(a,b){b=_hbE[_hbEC++]=new Object();b._N=a;b._C=0;return b;}
var hbx=_hbEvent("pv");hbx.vpc="HBX0200u";hbx.gn="ehg-gatehousemedia.hitbox.com";

// init omniture
document.write(unescape('%3Cscript type="text/javascript" src="http://global.static.ghm.zope.net/resources/global/ghs_wa_s_code.js"%3E%3C/script%3E'));

// init google_analytics
document.write(unescape('%3Cscript type="text/javascript"%3E')+
'var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");'+
'document.write(unescape("%3Cscript src=\'" + gaJsHost + "google-analytics.com/ga.js\' type=\'text/javascript\'%3E%3C/script%3E"));'+
unescape('%3C/script%3E'));



// main object
function generic_web_analytics (args) {
	
	if (typeof(args) == "undefined"){
		var args = {};
	}
	
	// variables
	this.account = args['account'] == undefined ? '' : args['account'];
	this.page_title = args['page_title'] == undefined ? '' : args['page_title'];
	this.search_type = args['search_type'] == undefined ? '' : args['search_type'];
	this.search_querry_var = args['search_querry_var'] == undefined ? '' : args['search_querry_var'];
	this.host = args['host'] == undefined ? '' : args['host'];
	this.state = args['state'] == undefined ? '' : args['state'];
	this.section_name = args['section_name'] == undefined ? '' : args['section_name'];
	this.article_headline = args['article_headline'] == undefined ? '' : args['article_headline'];
	this.page_type = args['page_type'] == undefined ? '' : args['page_type'];
	this.pub_type = args['pub_type'] == undefined ? '' : args['pub_type'];
	this.debug = 0;
	if(window.location.search.indexOf("testhbx") >= 0 || window.location.search.indexOf("debug_analytics") >= 0)this.debug = 1;
	
	// hbx
	this.hbx_global_account = 'DM560815MCAN79EN3';
	this.hbx_region_account = args['hbx_region_account'] == undefined ? '' : args['hbx_region_account'];
	this.hbx_site_account = args['hbx_site_account'] == undefined ? '' : args['hbx_site_account'];
	// omniture
	this.omniture_global_account = 'gatehouseglobal';
	this.omniture_site_account = args['omniture_site_account'] == undefined ? '' : args['omniture_site_account'];
	// google analytics
	this.ga_site_account = args['ga_site_account'] == undefined ? '' : args['ga_site_account'];
	
	// get the value for a querry string variable
	this._get_q = function (v) {
		var q = window.location.search.substring(1);
		var vars = q.split("&");
		for (var i=0;i<vars.length;i++) {
			var p = vars[i].split("=");
			if (p[0] == v) return p[1];
			}
		return "";
	}
	
	// get the domain for the current page
	this._get_domain = function() {
		return document.domain.match( /[^\.]+\.[^\.]+$/ );
	}
	
	// executes tracking code
	this._execute = function() {
		// global
		this._tacoda_execute(); // tacoda
		//this._hbx_execute(); // hitbox
		this._omniture_execute()// omniture
		this._ga_execute()// google analytics
	}
	
	// write to the document
	this._write = function(code) {
		document.write(code);
	}

	// --- vendor specific functions --- //

	// process google analytics
	this._ga_execute = function(){
		if (!this.debug){
			try {
				var globalTracker = _gat._getTracker("UA-6842750-1");
				globalTracker._trackPageview();
			} catch(err) {}
			if (this.ga_site_account){
				try {
					var siteTracker = _gat._getTracker(this.ga_site_account);
					siteTracker._setDomainName("none");
					siteTracker._setAllowLinker(true);
					siteTracker._initData();
					siteTracker._trackPageview();
				} catch(err) {}
			}
		}  else {
			if(typeof(_gat) != 'undefined'){
				alert('Google Analytics [OKAY]');
			} else {
				alert('Google Analytics [FAIL]');
			}
		}
	}

	// process hbx
	this._hbx_execute = function(){
		
		var page_type = this.page_type;
		var page_name = this.page_name;
		var pub_type = this.pub_type;
		var account = '';
		var mlc = new Array();
		var section_name = this._hbx_section_name_alias(this._hbx_cleanup(this.section_name, 1));
		var article_headline = this.article_headline;
		var article = '';
		var search_term = this.search_term;
		var search_type = this.search_type;
		var search = '';
		var debug = this.debug;
		
		if (this.hbx_site_account == "00000000000000000") debug = 1;
		
		// account
		account = this.hbx_site_account+";"+this.hbx_global_account;
		if (this.hbx_region_account != ''){
			account = account+';'+this.hbx_region_account;
		}
		
		// section id		
		if(section_name.indexOf("/") < 0){
			if (this._hbx_section[section_name] != undefined){
				mlc.push(this._hbx_section[section_name]);
				mlc.push(section_name);
			} else {
				mlc.push("other");
				mlc.push(section_name);
			}
		} else {
			mlc = section_name.split("/");
		}
		
		// article info
		if(article_headline != ""){
			article = section_name+"|"+this._hbx_cleanup(article_headline);
		}
		if (page_type == 'article' && this._get_q('popular') == 'true'){
			page_type = 'article-popular';
		}
		
		// search info
		if(this.search_term != "" && this.search_type != ""){
			search_term = this._get_q(this.search_term);
			if (this.search_term != "") search = this._hbx_cleanup(this.search_type)+"|"+this._hbx_cleanup(search_term);
		}
		
		// defaults
		if (page_name == "") {	page_name = document.title;}
		if (mlc.join("/") == ""){	mlc.push("unspecified");}
		
		// hbx request object
		hbx.acct=account;
		hbx.pn=this._hbx_cleanup(page_name);
		hbx.mlc=mlc.join("/");
		hbx.pndef="title";
		hbx.ctdef="full";
		hbx.fv="";
		hbx.lt="auto";
		hbx.dlf="n";
		hbx.dft="n";
		hbx.elf="n";
		hbx.seg="";
		hbx.fnl="";
		hbx.cmp="";
		hbx.cmpn="";
		hbx.dcmp="";
		hbx.dcmpn="";
		hbx.dcmpe="";
		hbx.dcmpre="";
		hbx.hra="";
		hbx.hqsr="";
		hbx.hqsp="";
		hbx.hlt="";
		hbx.hla="";
		hbx.gp="";
		hbx.gpn="";
		hbx.hcn="";
		hbx.hcv="";
		hbx.cp="null";
		hbx.cpd="";
		hbx.ci="";
		hbx.hc1=this._get_domain();
		hbx.hc2=this._hbx_cleanup(page_type)+"|"+this._hbx_cleanup(pub_type);
		hbx.hc3=article;
		hbx.hc4=search;
		hbx.hrf="";
		hbx.pec="";
		
		// hbx processing scripts
		if (window.parent.document.location.protocol == 'https:'){
			if (debug) {
			  this._write('<scr'+'ipt type="text/javascript" src="https://secure1.gatehousemedia.com/include/hbx_test.js"></scr'+'ipt>');
			} else {
				this._write('<scr'+'ipt type="text/javascript" src="https://secure1.gatehousemedia.com/include/hbx.js"></scr'+'ipt>');
			}
		} else {
			if (debug) {
			  this._write('<scr'+'ipt type="text/javascript" src="http://global.static.ghm.zope.net/resources/global/hbx_test.js"></scr'+'ipt>');
			} else {
				this._write('<scr'+'ipt type="text/javascript" src="http://global.static.ghm.zope.net/resources/global/hbx.js"></scr'+'ipt>');
			}
		}
	}
	
	// remove invalid characters for hitbox
	this._hbx_cleanup = function(a, mlc) {
   var a = (a == null) ? "" : a;
   a = a.replace(/&\w{0,8}\;/, "");
   a = a.split("|").join("");
   if (mlc == ""){a = a.split("/").join("");}
   a = a.split("!").join("");
   a = a.split(",").join("");
   a = a.split("&").join("");
   a = a.split("'").join("");
   a = a.split("#").join("");
   a = a.split("$").join("");
   a = a.split("%").join("");
   a = a.split("^").join("");
   a = a.split("*").join("");
   a = a.split(":").join("");
   a = a.split("~").join("");
   a = a.split(";").join("");
   a = a.split(" ").join("+");
   a = a.toLowerCase();
   return a;
	}
	
	// section id aliases
	this._hbx_section_name_alias = function(id) {
		var m = new Array();
		m = {
		'celebrations':'announcements',
		'lifestyle':'lifestyles',
		'opinion':'opinions',
		'contact+info':'contact',
		'schools':'education',
		'local_news':'local+news',
		'health+and+beauty':'health'
		};
		if (m[id] != undefined) {return m[id]}
		else {return id}
	}
	
	// select a top level section based on the section id
	this._hbx_section = function(id) {
		var m = new Array();
		m = {'homepage':'homepage','town+list':'homepage','news':'news','local+news':'news','state+news':'news','nation+/+world':'news','sports':'news','business':'news','education':'news','arts':'news','music':'news','movies':'news','books':'news','calendar':'news','food':'news','dining':'news','religion':'news','health':'news','gardening':'news','multimedia':'news','opinions':'news','columnists':'news','obituaries':'news','announcements':'news','lifestyles':'news','entertainment':'news','outdoors':'news','house+and+home':'news','travel':'news','environment':'news','weather':'news','special+reports':'news','police_and_fire':'news','state':'news','photos':'community','blogs':'community','forums':'community','profiles':'community','townconnect':'community','contact':'site+services','privacy+policy':'site+services','advertiser+info':'site+services','rss':'site+services','subscriptions':'site+services','games':'features','tv+listings':'features','shopping':'features','real+estate':'classifieds','autos':'classifieds','jobs':'classifieds','general':'classifieds','content':'search','archives':'search','events':'search','iyp':'search','people':'search','coupons':'search','404+error':'error'}
		if (m[id] != undefined) {return m[id]}
		else {return ''}
	}
	
	
	this._tacoda_execute = function() {
		tacoda_id = this._tacoda_get_id();
		if (tacoda_id != undefined && !this.debug){
			this._write('<div style="display:none;">');
			this._write('<scr'+'ipt type="text/javascript">var tcdacmd="dt";</scr'+'ipt>');
			this._write('<scr'+'ipt src="http://an.tacoda.net/an/'+tacoda_id+'/slf.js" LANGUAGE="JavaScript"></scr'+'ipt>');
			this._write('</div>');
		}
	}
	
	// map a domain to a tacoda account
	this._tacoda_get_id = function() {
		var id = this._get_domain();
		m = new Array();
		m = {'abingtonmariner.com': '15414',
'actonbeacon.com': '15414',
'advocatepress.com': '15413',
'aledotimesrecord.com': '15413',
'allstonbrightontab.com': '15414',
'amesburynews.com': '15414',
'ardmoreite.com': '15413',
'arlingtonadvocate.com': '15414',
'ascensioncitizen.com': '15412',
'ashlandtab.com': '15414',
'augustagazette.com': '15412',
'avonmessenger.com': '15414',
'barnstableregister.com': '15414',
'bastropenterprise.com': '15412',
'bataviarepublican.com': '15413',
'beaconvillager.com': '15414',
'bedfordminuteman.com': '15414',
'belmontcitizen.com': '15414',
'bensenvillepress.com': '15413',
'bentoneveningnews.com': '15413',
'berkeleysuburbanlife.com': '15413',
'beverlycitizen.com': '15414',
'bignickel.com': '15412',
'bloomingdalepress.com': '15413',
'boltoncommon.com': '15414',
'boonvilledailynews.com': '15412',
'braintreeforum.com': '15414',
'bridgewaterindependent.com': '15414',
'broadviewsuburbanlife.com': '15413',
'brookfieldsuburbanlife.com': '15413',
'brooklinetab.com': '15414',
'burlingtonunion.com': '15414',
'burrridgesuburbanlife.com': '15413',
'cambridgechronicle.com': '15414',
'cantondailyledger.com': '15413',
'cantonjournal.com': '15414',
'capecodder.com': '15414',
'carmitimes.com': '15413',
'carthagepress.com': '15412',
'carverreporter.com': '15414',
'charlescitypress.com': '15412',
'cheboygannews.com': '15413',
'chelmsfordindependent.com': '15414',
'chicagosuburbannews.com': '15413',
'chillicothenews.com': '15412',
'cohassetmariner.com': '15414',
'concordjournal.com': '15414',
'countrysidesuburbanlife.com': '15413',
'crescotimes.com': '15412',
'crookstontimes.com': '15412',
'dailyamericannews.com': '15413',
'dailynewstranscript.com': '15414',
'dailynewstribune.com': '15414',
'dailyregister.com': '15413',
'danversherald.com': '15414',
'dariensuburbanlife.com': '15413',
'derbydailyrep.com': '15412',
'deridderdailynews.com': '15412',
'devilslakejournal.com': '15412',
'dodgeglobe.com': '15412',
'doversherbornpress.com': '15414',
'duquoin.com': '15413',
'eastbridgewaterstar.com': '15414',
'eldoradotimes.com': '15412',
'enterprisenews.com': '15414',
'eveningtribune.com': '15415',
'examiner.net': '15413',
'e-zshopper.com': '15415',
'forestviewlife.com': '15413',
'framinghamtab.com': '15414',
'galatiamoneystretcher.com': '15413',
'gatehousemedia.com': '15415',
'geneseorepublic.com': '15413',
'georgetownrecord.com': '15414',
'glendalehightspresss.com': '15413',
'granitefallsnews.com': '15412',
'gridleyherald.com': '15412',
'halifaxreporter.com': '15414',
'hamiltonwenhamchronicle.com': '15414',
'hannibal.net': '15413',
'hanovermariner.com': '15414',
'hanoverparkpress.com': '15413',
'hansontowncrier.com': '15414',
'harvardpost.com': '15414',
'harwichoracle.com': '15414',
'helena-arkansas.com': '15412',
'heraldnews.com': '15414',
'herkimertelegram.com': '15415',
'hillsdale.net': '15413',
'hillsidesuburbanlife.com': '15413',
'hinghamjournal.com': '15414',
'hinsdalesuburbanlife.com': '15413',
'hodgkinssuburbanlife.com': '15413',
'holbrooksun.com': '15414',
'hollandsentinel.com': '15413',
'hollistontab.com': '15414',
'hopestar.com': '15412',
'hopkintoncrier.com': '15414',
'hudsonsun.com': '15414',
'huntleyfarmside.com': '15413',
'indianheadparksuburbanlife.com': '15413',
'ipswichchronicle.com': '15414',
'itascapress.com': '15413',
'joplindaily.com': '15412',
'journalstandard.com': '15413',
'kansascitykansan.com': '15412',
'kingstonreporter.com': '15414',
'kiowacountysignal.com': '15412',
'kirksvilledailyexpress.com': '15412',
'lagrangeparksuburbanlife.com': '15413',
'lagrangesuburbanlife.com': '15413',
'lajuntatribunedemocrat.com': '15412',
'lakesunleader.com': '15412',
'lakevillecall.com': '15414',
'lansingchronicletimes.com': '15412',
'leavenworthchronicle.com': '15412',
'Leavenworthchronicle.com': '15412',
'leavenworthtimes.com': '15412',
'leesvilledailyleader.com': '15412',
'lenconnect.com': '15413',
'lexingtonminuteman.com': '15414',
'linncountyleader.com': '15412',
'lislereporter.com': '15413',
'littlefallstimes.com': '15415',
'littletonindependent.com': '15414',
'lyonssuburbanlife.com': '15413',
'macombjournal.com': '15413',
'maconch.com': '15412',
'maldenobserver.com': '15414',
'marbleheadreporter.com': '15414',
'marengofarmside.com': '15413',
'mariondaily.com': '15413',
'marktwainhannibal.com': '15413',
'marlboroughenterprise.com': '15414',
'marshfieldmariner.com': '15414',
'maryvilledailyforum.com': '15412',
'mccooksuburbanlife.com': '15413',
'mcphersonsentinel.com': '15412',
'medfieldpress.com': '15414',
'medfordtranscript.com': '15414',
'melrosefreepress.com': '15414',
'metrowestdailynews.com': '15414',
'mexicoledger.com': '15412',
'milforddailynews.com': '15414',
'moberlymonitor.com': '15412',
'modedicated.com':	'15413',
'montenews.com': '15412',
'morningsun.net': '15412',
'morning-times.com': '15415',
'mothertown.com': '15414',
'mpnnow.com': '15415',
'mtshastanews.com': '15412',
'napervillereporter.com': '15413',
'natickbulletinandtab.com': '15414',
'ncnewspress.com': '15412',
'neagle.com': '15415',
'needhamtimes.com': '15414',
'neoshodailynews.com': '15412',
'newburyportcurrent.com': '15414',
'newportindependent.com': '15412',
'news-star.com': '15413',
'newstribune.info': '15415',
'newtontab.com': '15414',
'northandovercitizen.com': '15414',
'northboroughvillager.com': '15414',
'northriversidesuburbanlife.com': '15413',
'northshoresunday.com': '15414',
'nortonmirror.com': '15414',
'norwellmariner.com': '15414',
'norwoodbulletin.com': '15414',
'oakbrooksuburbanlife.com': '15413',
'oakbrookterracepress.com': '15413',
'oakridger.com': '15413',
'olneydailymail.com': '15413',
'pall-times.com': '15415',
'parentsandkids.net': '15414',
'patriotledger.com': '15414',
'pekintimes.com': '15413',
'pembrokemariner.com': '15414',
'pontiacdailyleader.com': '15413',
'postsouth.com': '15412',
'pratttribune.com': '15412',
'randolphherald.com': '15414',
'raynhamcall.com': '15414',
'readingadvocate.com': '15414',
'redwoodfallsgazette.com': '15412',
'reviewatlas.com': '15413',
'ridgecrestca.com': '15412',
'riversidesuburbanlife.com': '15413',
'romeovillereporter.com': '15413',
'rosellepress.com': '15413',
'roslindaletranscript.com': '15414',
'sacramento.com': '15412',
'saugusadvertiser.com': '15414',
'scituatemariner.com': '15414',
'sentinel-standard.com': '15413',
'sharonadvocate.com': '15414',
'siftingshearld.com': '15412',
'silverbelt.com': '15412',
'siskiyoudaily.com': '15412',
'sitraders.com': '15413',
'sleepyeyenews.com': '15412',
'somervillejournal.com': '15414',
'sooeveningnews.com': '15413',
'southofboston.com': '15414',
'springfield-shopper.net': '15413',
'standard-journal.com': '15415',
'starcourier.com': '15413',
'stickneylife.com': '15413',
'stjamesnews.com': '15412',
'stonehamsun.com': '15414',
'stoughtonjournal.com': '15414',
'streamwoodpress.com': '15413',
'sturgisjournal.com': '15413',
'sudburytowncrier.com': '15414',
'sulphurdailynews.com': '15412',
'swampscottreporter.com': '15414',
'taftmidwaydriller.com': '15412',
'tauntoncall.com': '15414',
'tauntongazette.com': '15414',
'telluridegateway.com': '15412',
'tewksburyadvocate.com': '15414',
'thebillericaminuteman.com': '15414',
'theclintoncourier.com': '15414',
'thecountrygazette.com': '15414',
'thedailyreporter.com': '15413',
'theeastonjournal.com': '15414',
'thekansan.com': '15412',
'the-leader.com': '15415',
'thelincolnjournal.com': '15414',
'themansfieldnews.com': '15414',
'the-paper.net': '15413',
'therecordherald.com': '15415',
'therocklandstandard.com': '15414',
'therolladailynews.com': '15412',
'thesalemgazette.com': '15414',
'thesentinelnewspaper.com': '15414',
'theshrewsburychronicle.com': '15414',
'thesuntimes.com': '15412',
'thewestwoodpress.com': '15414',
'theweymouthnews.com': '15414',
'thewinchesterstar.com': '15414',
'totallylocal.com': '15415',
'townonline.com/goodlife': '15414',
'townonline.com': '15414',
'tritowntranscript.com': '15414',
'uppercapecodder.com': '15414',
'visithannibalmo.com': '15413',
'wakefieldobserver.com': '15414',
'warrenvillepress.com': '15413',
'watertowntab.com': '15414',
'waylandtowncrier.com': '15414',
'wayneindependent.com': '15415',
'waynerepublican.com': '15413',
'waynesvilledailyguide.com': '15412',
'wellesleytownsman.com': '15414',
'wellsvilledaily.com': '15415',
'westboroughnews.com': '15414',
'westbridgewatertimes.com': '15414',
'westchestersuburbanlife.com': '15413',
'westernspringssuburbanlife.com': '15413',
'westfordeagle.com': '15414',
'westontowncrier.com': '15414',
'westsidestar.net': '15412',
'wgtndailynews.com': '15412',
'whitmantimes.com': '15414',
'wickedlocal.com': '15414',
'wickedlocalsearch.com': '15414',
'Wickedlocalwheels.com': '15414',
'willowbrooksuburbanlife.com': '15413',
'willowspringssuburbanlife.com': '15413',
'wilmingtonadvocate.com': '15414',
'winfieldpress.com': '15413',
'woburnadvocate.com': '15414',
'wooddalepress.com': '15413'
}
		if (m[id] != undefined) {return m[id]}
		else {return id}
	}
	
	// process omniture
	this._omniture_execute = function() {
		// page name
		s.pageName=document.title;
		
		// hierarchy
		if (this.hierarchy){
			s.hier1=this.hierarchy;
		} else {
			s.hier1=this._omniture_get_hierarchy();
		}
		
		// article 
		s.prop2 = this.section_name;
		s.prop4 = this.article_headline;	
		
		if(!this.debug){
			var s_code=s.t();if(s_code)this._write(s_code);
		} else {
			if(typeof(s) != 'undefined'){
				alert('Omniture [OKAY]');
			} else {
				alert('Omniture [FAIL]');
			}
		}
	}
	
	// generate the omniture hierarcy from the browser location
	this._omniture_get_hierarchy = function() {
		var location = /^(.+)\:\/\/(.+?)\/([^?]*)\??(.*)/.exec(document.location);
		var protocal = location[1];
		var domain = location[2];
		var path = location[3];
		var query = location[4];
		var hierarchy = new Array ();
		domain = domain.replace(/^www\./, '');
		path = path.replace(/x\d+\//, '');
		hierarchy.push(domain);
		hierarchy.push(path.split("/"));
		return hierarchy.join(",");
	}
}


// map an hbx account id to an omniture account id
function _WA_account_map(id, account_type, requested_type){
	if (account_type == 'hbx' && requested_type == 'omniture'){
		m = new Array();
		m = {'DM56101025RD79EN3':'gatehouseadvocatepress','DM561010KEFE79EN3':'gatehousealedotimesrecord','DM580107DDEM79EN3':'gatehouseardmoreite','DM561010CLRA79EN3':'gatehouseaugustagazette','DM571026KDFR79EN3':'gatehouseauroraadvertiser','DM561011N0DR79EN3':'gatehousebastropenterprise','DM561010M5SF79EN3':'gatehousebentoneveningnews','DM561011OLDD79EN3':'gatehouseboonvilledailynews','DM570427AHNE79EN3':'gatehousecantonrep','DM561010BHEN79EN3':'gatehousecarmitimes','DM561011AMDB79EN3':'gatehousecarthagepress','DM5610100NEV79EN3':'gatehousecharlescitypress','DM561030DEDM79EN3':'gatehousecheboygannews','DM561011PIWA79EN3':'gatehousechillicothenews','DM571220ENDE79EN3':'gatehousechronicleexpress','DM57042732CE79EN3':'gatehousecityguidespringfield','DM561010OOAS79EN3':'gatehousecrescotimes','DM56101193AC79EN3':'gatehousecrookstontimes','DM56101092CD79EN3':'gatehousedailyamericannews','DM56092786WA79EN3':'gatehousedailynewstranscript','DM560927P8CD79EN3':'gatehousedailynewstribune','DM56101085DC79EN3':'gatehousedailyregister','DM561010E4AA79EN3':'gatehousederbyreporter','DM561011DKDZ79EN3':'gatehousederidderdailynews','DM5801077OWA79EN3':'gatehousedodgeglobe','DM570606K7RS79EN3':'gatehousedriveillinois','DM561010BIVD79EN3':'gatehouseduquoin','DM561010E8CE79EN3':'gatehouseeldoradotimes','DM560927ANEC79EN3':'gatehouseenterprisenews','DM5610112JAD79EN3':'gatehouseeveningtribune','DM580107K8SB79EN3':'gatehouseexaminer','DM5610110ABC79EN3':'gatehouseftleavenworthlamp','DM5610106AVC79EN3':'gatehousegalatiamoneystretcher','DM570427N3NZ79EN3':'gatehousegalesburg','DM5610158HRN79EN3':'gatehousegatehousemedia','DM561010GGCS79EN3':'gatehousegeneseorepublic','DM5801070LVR79EN3':'gatehousegirardpress','DM561011A3CS79EN3':'gatehousegranitefallsnews','DM5610127PBF79EN3':'gatehousegridleyherald','DM580107BNRE79EN3':'gatehousehannibal','DM561010BJVB79EN3':'gatehousehelenaarkansas','DM5610300MDA79EN3':'gatehouseheraldnews','DM56101117SB79EN3':'gatehouseherkimertelegram','DM5801073DRD79EN3':'gatehousehillsdale','DM580107E9AA79EN3':'gatehousehollandsentinel','DM561010MHEV79EN3':'gatehousehopestar','DM5704271CSE79EN3':'gatehouseindeonline','DM561010K0NS79EN3':'gatehousejacksonnewspapers','DM561010B3CW79EN3':'gatehousejournalstandard','DM561010F1AF79EN3':'gatehousekansascitykansan','DM561010MANE79EN3':'gatehousekiowacountysignal','DM56101178AZ79EN3':'gatehousekirksvilledailyexpress','DM561030FBZW79EN3':'gatehouselajuntatribunedemocrat','DM561011I0FR79EN3':'gatehouselakesunleader','DM56101150AV79EN3':'gatehouselansingthisweek','DM561011GKED79EN3':'gatehouseleaderjournal','DM561011F3WR79EN3':'gatehouseleavenworthchronicle','DM561010G4EF79EN3':'gatehouseleavenworthtimes','DM56101113AZ79EN3':'gatehouseleesvilledailyleader','DM561011DMAA79EN3':'gatehouselenconnect','DM570427C7RE79EN3':'gatehouselincolncourier','DM561011H7ZA79EN3':'gatehouselinncountyleader','DM561011CKEV79EN3':'gatehouselittlefallstimes','DM561010D0FD79EN3':'gatehousemacombjournal','DM561011AHNW79EN3':'gatehousemaconch','DM561010INBZ79EN3':'gatehousemariondaily','DM561011PDBZ79EN3':'gatehousemaryvilledailyforum','DM561010JMMD79EN3':'gatehousemcphersonsentinel','DM560927CMRF79EN3':'gatehousemetrowestdailynews','DM561011JACE79EN3':'gatehousemexicoledger','DM5609270NVN79EN3':'gatehousemilforddailynews','DM561011LBZC79EN3':'gatehousemoberlymonitor','DM5801070OZD79EN3':'gatehousemorningsun','DM5610116OAM79EN3':'gatehousemorningtimes','DM5610120CWE79EN3':'gatehousempnnow','DM561030LCEZ79EN3':'gatehousemsnscache','DM561012JGZD79EN3':'gatehousemtshastanews','DM561030PECV79EN3':'gatehousencnewspress','DM561011KOVN79EN3':'gatehouseneagle','DM561011HIDS79EN3':'gatehouseneoshodailynews','DM561010ONAN79EN3':'gatehousenewportindependent','DM580107JHDS79EN3':'gatehousenewsstar','DM561011N4WB79EN3':'gatehousenewstribune','DM570514K5AN79EN3':'gatehousenorwichbulletin','DM580108DJES79EN3':'gatehouseoakridger','DM56101098WF79EN3':'gatehouseolneydailymail','DM561011DIMA79EN3':'gatehousepalltimes','DM56092714RF79EN3':'gatehousepatriotledger','DM57042785MD79EN3':'gatehousepjstar','DM56103037BS79EN3':'gatehouseplymouthguide','DM561010IJAA79EN3':'gatehousepontiacdailyleader','DM5610113KVC79EN3':'gatehousepostsouth','DM5610107JNM79EN3':'gatehousepratttribune','DM56101138DF79EN3':'gatehouseredwoodfallsgazette','DM57042733DV79EN3':'gatehouserepbuzz','DM561010M1WV79EN3':'gatehousereviewatlas','DM561011EFZD79EN3':'gatehouseridgecrestca','DM5705148PBF79EN3':'gatehouserrstar','DM561010MBBM79EN3':'gatehousesiftingsherald','DM5610117CZD79EN3':'gatehousesilverbelt','DM561012DICW79EN3':'gatehousesiskiyoudaily','DM570427MCRN79EN3':'gatehousesjr','DM561011PBEV79EN3':'gatehousesleepyeyenews','DM5610114JRA79EN3':'gatehousesooeveningnews','DM560927FBME79EN3':'gatehousesouthofboston','DM5610105GSB79EN3':'gatehousespringfieldshopper','DM5610110DEB79EN3':'gatehousestandardjournal','DM561010PGCR79EN3':'gatehousestarcourier','DM561011B0ES79EN3':'gatehousestjamesnews','DM56101148ZA79EN3':'gatehousesturgisjournal','DM561010N1FC79EN3':'gatehousestuttgartdailyleader','DM56101158EB79EN3':'gatehousesulphurdailynews','DM5610120EAF79EN3':'gatehousetaftmidwaydriller','DM561011I8ZW79EN3':'gatehousetauntongazette','DM561012MHSB79EN3':'gatehousetelluridenews','DM561011EHZR79EN3':'gatehousethedailyreporter','DM5801076AZA79EN3':'gatehousetheindependent','DM580107KJCN79EN3':'gatehousethekansan','DM56101106EF79EN3':'gatehousetheleader','DM561011K3AZ79EN3':'gatehousetherecordherald','DM561011IEDC79EN3':'gatehousetherolladailynews','DM5704270PFV79EN3':'gatehousethesuburbanite','DM5704279NSR79EN3':'gatehousetimesreporter','DM561011LHBR79EN3':'gatehousebignickel','DM5610115HAV79EN3':'gatehousedevilslakejournal','DM561010EHSE79EN3':'gatehousepekintimes','DM5610118MDE79EN3':'gatehousesentinelstandard','DM561010FFAN79EN3':'gatehousesitraders','DM56101259BW79EN3':'gatehousetotallylocal','DM570514E0BN79EN3':'gatehouseuticaod','DM561011CGAE79EN3':'gatehousewayneindependent','DM561011LODE79EN3':'gatehousewaynesvilledailyguide','DM561011B8ZZ79EN3':'gatehouseweeklycitizen','DM56101145EC79EN3':'gatehousewellingtondailynews','DM561011LCCD79EN3':'gatehousewellsvilledaily','DM561011E0ZZ79EN3':'gatehousewestsidestar','DM561010MKBN79EN3':'gatehousecantondailyledger','DM570606JJEE79EN3':'gatehousenafreepress','DM5703133GDS79EN3':'gatehousetownonline','DM560927IABD79EN3':'gatehousewickedlocal','DM570214IPMB79EN3':'gatehousewickedlocalwheels','DM5703135HMF79EN3':'gatehousewickedlocalbusinesses','DM560927MKBR79EN3':'gatehousewickedlocaljobs','DM570312PJSD79EN3':'gatehousewickedlocalparents','DM5801075OBB79EN3':'gatehouseyorknewstimes','DM570324I5MN79EN3':'gatehousemysuburbanlife','DM57032405ZE79EN3':'gatehousemysuburbanlife','DM570324OLAA79EN3':'gatehousemysuburbanlife','DM5703248GBE79EN3':'gatehousemysuburbanlife','DM570324D1DD79EN3':'gatehousemysuburbanlife','DM570324L7WB79EN3':'gatehousemysuburbanlife','DM57032443ZE79EN3':'gatehousemysuburbanlife','DM5703249HVC79EN3':'gatehousemysuburbanlife','DM570324JEDD79EN3':'gatehousemysuburbanlife','DM570324L4RA79EN3':'gatehousemysuburbanlife','DM570324EGAD79EN3':'gatehousemysuburbanlife','DM5703244AVZ79EN3':'gatehousemysuburbanlife','DM570324MPRE79EN3':'gatehousemysuburbanlife','DM570324IPWM79EN3':'gatehousemysuburbanlife','DM5703248GND79EN3':'gatehousemysuburbanlife','DM570324PIAD79EN3':'gatehousemysuburbanlife','DM570324CEMS79EN3':'gatehousemysuburbanlife','DM5703240ODN79EN3':'gatehousemysuburbanlife','DM5703245EEC79EN3':'gatehousemysuburbanlife','DM570324BLEC79EN3':'gatehousemysuburbanlife','DM5703249JSB79EN3':'gatehousemysuburbanlife','DM570324EKCA79EN3':'gatehousemysuburbanlife','DM570324IGCC79EN3':'gatehousemysuburbanlife','DM570324LNNZ79EN3':'gatehousemysuburbanlife','DM5703244NSC79EN3':'gatehousemysuburbanlife','DM57032451BE79EN3':'gatehousemysuburbanlife','DM5703240BEV79EN3':'gatehousemysuburbanlife','DM570324M1ZZ79EN3':'gatehousemysuburbanlife','DM570324D2ZE79EN3':'gatehousemysuburbanlife','DM570324F7CA79EN3':'gatehousemysuburbanlife','DM5703249IMM79EN3':'gatehousemysuburbanlife','DM5703249PNB79EN3':'gatehousemysuburbanlife','DM570324IDFV79EN3':'gatehousemysuburbanlife','DM5703240AWD79EN3':'gatehousemysuburbanlife','DM570324L2SC79EN3':'gatehousemysuburbanlife','DM5703241DWD79EN3':'gatehousemysuburbanlife','DM570324CFVC79EN3':'gatehousemysuburbanlife','DM570324HGNA79EN3':'gatehousemysuburbanlife','DM570324PKCN79EN3':'gatehousemysuburbanlife','DM561010P5AD79EN3':'gatehousemysuburbanlife','DM5703242OZR79EN3':'gatehousemysuburbanlife','DM570324AIDC79EN3':'gatehousemysuburbanlife','DM570324M4MW79EN3':'gatehousemysuburbanlife','DM5703249AFS79EN3':'gatehousemysuburbanlife','DM570324G1AS79EN3':'gatehousemysuburbanlife','DM570324AIMA79EN3':'gatehousemysuburbanlife','DM5703249GWM79EN3':'gatehousemysuburbanlife','DM5703241IWD79EN3':'gatehousemysuburbanlife','DM570324H5RD79EN3':'gatehousemysuburbanlife','DM5703244AWF79EN3':'gatehousemysuburbanlife','DM570324HPMB79EN3':'gatehousemysuburbanlife','DM570324N7RZ79EN3':'gatehousemysuburbanlife','DM570324PARN79EN3':'gatehousemysuburbanlife','DM5703241NSE79EN3':'gatehousemysuburbanlife','DM5703247MDD79EN3':'gatehousemysuburbanlife','DM570324GMEE79EN3':'gatehousemysuburbanlife','DM570324GPWM79EN3':'gatehousemysuburbanlife','DM570324FHND79EN3':'gatehousemysuburbanlife','DM57032429VA79EN3':'gatehousemysuburbanlife','DM570324N9WZ79EN3':'gatehousemysuburbanlife','DM570324EGSS79EN3':'gatehousemysuburbanlife','DM570312F3FS79EN3':'gatehousewickedlocal','DM570312KOAB79EN3':'gatehousewickedlocal','DM570312LHCD79EN3':'gatehousewickedlocal','DM570312HDVB79EN3':'gatehousewickedlocal','DM5703126JAV79EN3':'gatehousewickedlocal','DM570312I8VE79EN3':'gatehousewickedlocal','DM570406IBBZ79EN3':'gatehousewickedlocal','DM570312M7DD79EN3':'gatehousewickedlocal','DM570312JPAD79EN3':'gatehousewickedlocal','DM570312O2MA79EN3':'gatehousewickedlocal','DM5703123FFD79EN3':'gatehousewickedlocal','DM571220L3MF79EN3':'gatehousewickedlocal','DM57031240CA79EN3':'gatehousewickedlocal','DM570312GGZA79EN3':'gatehousewickedlocal','DM570312KLZB79EN3':'gatehousewickedlocal','DM57031252DZ79EN3':'gatehousewickedlocal','DM571220K4RE79EN3':'gatehousewickedlocal','DM57031227ZD79EN3':'gatehousewickedlocal','DM570312KMEE79EN3':'gatehousewickedlocal','DM5704060PZW79EN3':'gatehousewickedlocal','DM57040692BR79EN3':'gatehousewickedlocal','DM570406N4BE79EN3':'gatehousewickedlocal','DM5712202GSD79EN3':'gatehousewickedlocal','DM5703126DEN79EN3':'gatehousewickedlocal','DM5703129KDD79EN3':'gatehousewickedlocal','DM57031241AR79EN3':'gatehousewickedlocal','DM570312NJDZ79EN3':'gatehousewickedlocal','DM57040671CE79EN3':'gatehousewickedlocal','DM5712207ODD79EN3':'gatehousewickedlocal','DM570312E2MM79EN3':'gatehousewickedlocal','DM570312B3MR79EN3':'gatehousewickedlocal','DM5703129EVD79EN3':'gatehousewickedlocal','DM5703126NEC79EN3':'gatehousewickedlocal','DM57031271AB79EN3':'gatehousewickedlocal','DM571220CADA79EN3':'gatehousewickedlocal','DM57122079FB79EN3':'gatehousewickedlocal','DM571220MHWC79EN3':'gatehousewickedlocal','DM570312OKNZ79EN3':'gatehousewickedlocal','DM5801062JCB79EN3':'gatehousewickedlocal','DM571220C7DN79EN3':'gatehousewickedlocal','DM570312ABCD79EN3':'gatehousewickedlocal','DM571220N5BD79EN3':'gatehousewickedlocal','DM5712209KND79EN3':'gatehousewickedlocal','DM570610DHEW79EN3':'gatehousewickedlocal','DM5712200BDE79EN3':'gatehousewickedlocal','DM570312N9DA79EN3':'gatehousewickedlocal','DM5712204PAW79EN3':'gatehousewickedlocal','DM570312DNEE79EN3':'gatehousewickedlocal','DM571220HOES79EN3':'gatehousewickedlocal','DM561030I0DR79EN3':'gatehousewickedlocal','DM570406J2WN79EN3':'gatehousewickedlocal','DM57031257BC79EN3':'gatehousewickedlocal','DM570312GEDB79EN3':'gatehousewickedlocal','DM570406O1WD79EN3':'gatehousewickedlocal','DM570312C4RD79EN3':'gatehousewickedlocal','DM57031250FR79EN3':'gatehousewickedlocal','DM5703128CNW79EN3':'gatehousewickedlocal','DM570312NLMF79EN3':'gatehousewickedlocal','DM570312J0FF79EN3':'gatehousewickedlocal','DM571220OGRC79EN3':'gatehousewickedlocal','DM57031221AC79EN3':'gatehousewickedlocal','DM570312E5WC79EN3':'gatehousewickedlocal','DM571220OFZD79EN3':'gatehousewickedlocal','DM5703125NEE79EN3':'gatehousewickedlocal','DM570312DKWE79EN3':'gatehousewickedlocal','DM570406FBBW79EN3':'gatehousewickedlocal','DM571220LPVR79EN3':'gatehousewickedlocal','DM57031212ZB79EN3':'gatehousewickedlocal','DM57031273AS79EN3':'gatehousewickedlocal','DM570312L8WB79EN3':'gatehousewickedlocal','DM570312P9ME79EN3':'gatehousewickedlocal','DM571220F4SM79EN3':'gatehousewickedlocal','DM570312G9EM79EN3':'gatehousewickedlocal','DM570312MLZR79EN3':'gatehousewickedlocal','DM571220FEFM79EN3':'gatehousewickedlocal','DM570312MKVN79EN3':'gatehousewickedlocal','DM570312CPFB79EN3':'gatehousewickedlocal','DM570406HAMC79EN3':'gatehousewickedlocal','DM571220J0ME79EN3':'gatehousewickedlocal','DM570312BAVZ79EN3':'gatehousewickedlocal','DM570312E9AE79EN3':'gatehousewickedlocal','DM570312CMVZ79EN3':'gatehousewickedlocal','DM57122001NM79EN3':'gatehousewickedlocal','DM570312KOWF79EN3':'gatehousewickedlocal','DM5712200PZZ79EN3':'gatehousewickedlocal','DM571220I5AA79EN3':'gatehousewickedlocal','DM57122066NE79EN3':'gatehousewickedlocal','DM57122083EE79EN3':'gatehousewickedlocal','DM5712201CAE79EN3':'gatehousewickedlocal','DM5703126ESE79EN3':'gatehousewickedlocal','DM5703129KAE79EN3':'gatehousewickedlocal','DM570312OPER79EN3':'gatehousewickedlocal','DM570312OIMN79EN3':'gatehousewickedlocal','DM570312IIMV79EN3':'gatehousewickedlocal','DM571220ONAV79EN3':'gatehousewickedlocal','DM570312KIWS79EN3':'gatehousewickedlocal','DM570312A1CD79EN3':'gatehousewickedlocal','DM570312NMCS79EN3':'gatehousewickedlocal','DM570312H0WN79EN3':'gatehousewickedlocal','DM570312KNWR79EN3':'gatehousewickedlocal','DM570406HJEN79EN3':'gatehousewickedlocal','DM571220IGSB79EN3':'gatehousewickedlocal','DM570312IIAC79EN3':'gatehousewickedlocal','DM571220PMAN79EN3':'gatehousewickedlocal','DM571220M5VC79EN3':'gatehousewickedlocal','DM571220HHDC79EN3':'gatehousewickedlocal','DM571220O1NV79EN3':'gatehousewickedlocal','DM571220OESE79EN3':'gatehousewickedlocal','DM570406K2EB79EN3':'gatehousewickedlocal','DM570406N8BA79EN3':'gatehousewickedlocal','DM5703120HNE79EN3':'gatehousewickedlocal','DM571220H0CE79EN3':'gatehousewickedlocal','DM5712203JFC79EN3':'gatehousewickedlocal','DM5703123PBA79EN3':'gatehousewickedlocal','DM571220GCSB79EN3':'gatehousewickedlocal','DM5703126DAC79EN3':'gatehousewickedlocal','DM570312F9WV79EN3':'gatehousewickedlocal','DM570610N4DM79EN3':'gatehousewickedlocal','DM5703129FCC79EN3':'gatehousewickedlocal','DM57031298DV79EN3':'gatehousewickedlocal','DM5703120HBD79EN3':'gatehousewickedlocal','DM5703120DWM79EN3':'gatehousewickedlocal','DM571220KJEZ79EN3':'gatehousewickedlocal','DM570312FGEF79EN3':'gatehousewickedlocal','DM5712202LND79EN3':'gatehousewickedlocal','DM57031278DN79EN3':'gatehousewickedlocal','DM5703128JZE79EN3':'gatehousewickedlocal','DM5712208LWC79EN3':'gatehousewickedlocal','DM570312A9MD79EN3':'gatehousewickedlocal','DM57031260NW79EN3':'gatehousewickedlocal','DM571220PBZB79EN3':'gatehousewickedlocal','DM57040659CD79EN3':'gatehousewickedlocal','DM570312DHZV79EN3':'gatehousewickedlocal','DM571220NIRS79EN3':'gatehousewickedlocal','DM571220AMRN79EN3':'gatehousewickedlocal','DM571220DERS79EN3':'gatehousewickedlocal','DM571220OMFZ79EN3':'gatehousewickedlocal','DM5703131CNE79EN3':'gatehousewickedlocal','DM571220AHWS79EN3':'gatehousewickedlocal','DM571220BCBN79EN3':'gatehousewickedlocal','DM58010611AD79EN3':'gatehousewickedlocal','DM570313J0RV79EN3':'gatehousewickedlocal','DM570313DLVS79EN3':'gatehousewickedlocal','DM5703136JCV79EN3':'gatehousewickedlocal','DM5712208CEE79EN3':'gatehousewickedlocal','DM571220L3SR79EN3':'gatehousewickedlocal','DM57031373MC79EN3':'gatehousewickedlocal','DM5703137FBM79EN3':'gatehousewickedlocal','DM570313BBBE79EN3':'gatehousewickedlocal','DM571220BENN79EN3':'gatehousewickedlocal','DM57122015DA79EN3':'gatehousewickedlocal','DM571220C1AB79EN3':'gatehousewickedlocal','DM570313DKRE79EN3':'gatehousewickedlocal','DM5704063OVM79EN3':'gatehousewickedlocal','DM570313CBEA79EN3':'gatehousewickedlocal','DM57031376NV79EN3':'gatehousewickedlocal','DM570313OGAC79EN3':'gatehousewickedlocal','DM571220CLDS79EN3':'gatehousewickedlocal','DM571220BGND79EN3':'gatehousewickedlocal','DM570625GMWF79EN3':'gatehousewickedlocal','DM57031251BF79EN3':'gatehousewickedlocal'}
		if (m[id] != undefined) {return m[id]}
		else {return ''}
	}
}
