
/*
SMMiLe JavaScript Object Model
Version 1.0
By Daryl Beattie
Copyright 2000, ScreamingMedia

SAMPLE USAGE [note that "script" tag is broken as "sc ript" so that it does not end this script]:

The code blow goes in the <HEAD> section of your HTML file
replace "JSDir/ContentSetID" with your JavaScript file path and name

	<sc ript language="JavaScript" src="JSDir/ContentSetID.js"></sc ript>
	<sc ript language="JavaScript">
		if(typeof SMChosenContent != \'undefined\') {
			document.write("<scri" + "pt language=\"JavaScript\" src=\"JSDir/ContentSetID" + SMChosenContent + ".js\"></sc" + "ript>");
		}
	</scr ipt>

The JavaScript objects are modelled after the SMMiLe XML structure:

<content-set>
	<content>
		<article>
			<title>...</title>
			<metadata>...</metadata>
			<core>...</core>
			<body>...</body>
		</article>
	</content>
</content-set>

As for the JavaScript, it is structured like this:

contentSet[0](id, name, language, publishedDate, contents)
|--	contents[i](id, revisionId, type, language, role, article) 
	|
	|--	article(title, metadata, core, body)
		|
		|--	metadata(documentMetadata, publicationMetadata, structuralMetadata, subjectMetadata, relatedContentMetadata, processingMetadata)
		|	|--	documentMetadata(storage, publisherReleaseDate)
		|	|--	publicationMetadata(publicationName)
		|	|--	structuralMetadata()
		|	|--	subjectMetadata()
		|	|--	relatedContentMetadata()
		|	|--	processingMetadata()
		|
		|--	core(summaryHeadline, docAbstract, headline, author, copyright, dateLine, dateTime, type)

An example of using this object model to print out the body of the second
article is:

	document.write(SMContentSet[0].contents[1].article.body);

*/


function displayContentPage(url, contentNum) {
	window.location = url + "?SMContentIndex=" + contentNum + "&SMContentSet=" + 0;
}

function displayContentPage(url, contentNum, contentSetNum) {
	window.location = url + "?SMContentIndex=" + contentNum + "&SMContentSet=" + contentSetNum;
}

function getParamValue(matchString, defaultValue) {
	var thisURL = window.location.toString();
	var value = defaultValue;
	if ((thisURL.indexOf("?") != -1) &&
	    (thisURL.indexOf(matchString) != -1) &&
	    (thisURL.charAt(thisURL.indexOf(matchString) + matchString.length) != "&")) {
		start = thisURL.indexOf(matchString) + matchString.length;
		if (thisURL.indexOf("&", start) > -1) {
			value = thisURL.substring(start, (thisURL.indexOf("&", start)));
		}
		else {
			value = thisURL.substring(start, thisURL.length);
		}
	}
	if (value == "NaN") {
		value = devaultValue;
	}
	return value;
}

var SMChosenContent = Number(getParamValue("SMContentIndex=", -1));
var SMChosenContentSet = Number(getParamValue("SMContentSet=", 0));

function prettyDate(date) {
	var result;
	if (date.substring(5,7) == "01") {result = "January ";}
	else if (date.substring(5,7) == "02") {result = "February ";}
	else if (date.substring(5,7) == "03") {result = "March ";}
	else if (date.substring(5,7) == "04") {result = "April ";}
	else if (date.substring(5,7) == "05") {result = "May ";}
	else if (date.substring(5,7) == "06") {result = "June ";}
	else if (date.substring(5,7) == "07") {result = "July ";}
	else if (date.substring(5,7) == "08") {result = "August ";}
	else if (date.substring(5,7) == "09") {result = "September ";}
	else if (date.substring(5,7) == "10") {result = "October ";}
	else if (date.substring(5,7) == "11") {result = "November ";}
	else {result = "December ";}
	if (date.charAt(8) == "0") {result += date.charAt(9);}
	else {result += date.substring(8,10);}
	return result + ", " + date.substring(0,4);
}

// Metadata sub-type element objects.
function MakeDocumentMetadata(myStorage, myPublisherReleaseDate) {
	this.storage = myStorage;
	this.publisherReleaseDate = myPublisherReleaseDate;
}
function MakePublicationMetadata(myPublicationName) {
	this.publicationName = myPublicationName;
}
function MakeStructuralMetadata() { }
function MakeSubjectMetadata() { }
function MakeRelatedContentMetadata() { }
function MakeProcessingMetadata() { }

// Metadata element object (made up of the sub-types).
function MakeMetadata(myDocumentMetadata, myPublicationMetadata, myStructuralMetadata, mySubjectMetadata, myRelatedContentMetadata, myProcessingMetadata) {
	this.documentMetadata = myDocumentMetadata;
	this.publicationMetadata = myPublicationMetadata;
	this.structuralMetadata = myStructuralMetadata;
	this.subjectMetadata = mySubjectMetadata;
	this.relatedContentMetadata = myRelatedContentMetadata;
	this.processingMetadata = myProcessingMetadata;
}

// Core element object
function MakeCore(mySummaryHeadline, myAbstract, myHeadline, myAuthor, myCopyright, myDateLine, myDateTime, myType) {
	this.summaryHeadline = mySummaryHeadline;
	this.docAbstract = myAbstract;
	this.headline = myHeadline;
	this.author = myAuthor;
	this.copyright = myCopyright;
	this.dateLine = myDateLine;
	this.dateTime = myDateTime;
	this.type = myType;
}

// Article element object
function MakeArticle(myTitle, myMetadata, myCore, myBody) {
	this.title = myTitle;
	this.metadata = myMetadata;
	this.core = myCore;
	this.body = myBody;
}

// Content element object
function MakeContent(myId, myRevisionId, myType, myLanguage, myRole, myArticle) {
	this.id = myId;
	this.revisionId = myRevisionId;
	this.type = myType;
	this.language = myLanguage;
	this.role = myRole;
	this.article = myArticle;
}

// Content-set master element object
function MakeContentSet(myId, myName, myLanguage, myPublishedDate, myContents) {
	this.id = myId;
	this.name = myName;
	this.language = myLanguage;
	this.publishedDate = myPublishedDate;
	this.contents = myContents;
}

{ // This block intializes the data objects.

	var Index = -1;
	if (typeof SMContentSet == "undefined") {
		var SMContentSet = new Array();
	}
	var contents = new Array();
//////////////////////// This section is made PER CONTENT (because the actual data is written in here)

	
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-04T05:00:18');
	publicationMetadata = new MakePublicationMetadata('USA TODAY');

	title = 'Young Give Thumbs-Down to Blogging, Twitter';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Young Give Thumbs-Down to Blogging, Twitter',
		'A new report paints a picture of how teens and young adults are using social media these days. Teens are eating up Facebook but are not so keen on Twitter, and they are not blogging as much as they used to, according to the Pew Internet Project\'s report....',
		'Young Give Thumbs-Down to Blogging, Twitter',
		'By Mary Brophy Marcus',
		'Copyright USA TODAY 2010',
		'',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_04_comtex_140848998.anpa.ew',
		'01265296228891',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-04T08:14:08');
	publicationMetadata = new MakePublicationMetadata('PRNewswire');

	title = 'Jaspersoft\'s New Software Community Release Delivers Broad Suite of Business Intelligence Capabilities';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Jaspersoft\'s New Software Community Release Delivers Broad Suite of Business Intelligence Capabilities',
		'SAN FRANCISCO, Feb. 4 /PRNewswire/ -- Jaspersoft, creator of the world\'s most widely used business intelligence software, today announced the immediate availability of Jaspersoft 3.7 Community release for free download at jasperforge.org. The Jaspersoft...',
		'Jaspersoft\'s New Software Community Release Delivers Broad Suite of Business Intelligence Capabilities',
		'',
		'Copyright PRNewswire 2010',
		'SAN FRANCISCO',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_04_comtex_140853782.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-03T12:04:03');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'Return Path: Almost 20% of Commercial, Permissioned E-mails Never Reached U.S. & Canadian Consumer Inboxes in the Second Half...';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Return Path: Almost 20% of Commercial, Permissioned E-mails Never Reached U.S. & Canadian Consumer Inboxes in the Second Half...',
		'',
		'Return Path: Almost 20% of Commercial, Permissioned E-mails Never Reached U.S. & Canadian Consumer Inboxes in the Second Half...',
		'',
		'Copyright Business Wire 2010',
		'NEW YORK',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_03_comtex_140825192.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-03T09:19:02');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'DirectMail.com Announces Patent on GeoSelector Technology';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'DirectMail.com Announces Patent on GeoSelector Technology',
		'',
		'DirectMail.com Announces Patent on GeoSelector Technology',
		'',
		'Copyright Business Wire 2010',
		'PRINCE FREDERICK, Md.',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_03_comtex_140818931.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-02T05:01:06');
	publicationMetadata = new MakePublicationMetadata('PRNewswire');

	title = 'Mobile Marketing Association: 17% of All U.S. Adults Use Mobile Banking';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Mobile Marketing Association: 17% of All U.S. Adults Use Mobile Banking',
		'NEW YORK, LONDON, SINGAPORE AND SAO PAULO, Feb. 2 /PRNewswire/ -- The Mobile Marketing Association (MMA) (http://www.mmaglobal.com/) and its official research partner, Luth Research (http://www.luthresearch.com/), today released highlights from the latest...',
		'Mobile Marketing Association: 17% of All U.S. Adults Use Mobile Banking',
		'',
		'Copyright PRNewswire 2010',
		'NEW YORK, LONDON, SINGAPORE AND SAO PAULO',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_02_comtex_140756691.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-02T12:07:41');
	publicationMetadata = new MakePublicationMetadata('M2 Communications');

	title = 'Unica Extends SaaS Product Line with Search Bid Management Acquisition';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Unica Extends SaaS Product Line with Search Bid Management Acquisition',
		'London, -- Unica Corporation (Nasdaq: UNCA), the recognised leader in marketing softwaresolutions, today announced that it has extended its interactive marketing solutions with search marketing technologyby acquiring the paid search bid management business,...',
		'Unica Extends SaaS Product Line with Search Bid Management Acquisition',
		'',
		'(C)1994-2010 M2 Communications',
		'',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'm2c_2010_02_02_m2p_0000-0812-m2p_201002021207412_3',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-02T11:28:08');
	publicationMetadata = new MakePublicationMetadata('PRNewswire');

	title = 'Joe Lin Joins Digitas As Creative Senior Vice President';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Joe Lin Joins Digitas As Creative Senior Vice President',
		'NEW YORK, Feb. 2 /PRNewswire/ -- Lincoln Bjorkman, EVP and Executive Creative Director, Digitas New York region, (http://www.digitas.com/) today announced the hiring of Joe Lin as Creative Senior Vice President for the agency\'s Stamford office. Creative...',
		'Joe Lin Joins Digitas As Creative Senior Vice President',
		'',
		'Copyright PRNewswire 2010',
		'NEW YORK',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_02_comtex_140773231.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-02T16:02:58');
	publicationMetadata = new MakePublicationMetadata('Associated Press');

	title = 'Harte-Hanks Reports Drop in 4Q profit';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Harte-Hanks Reports Drop in 4Q profit',
		'SAN ANTONIO - Direct marketing firm Harte-Hanks Inc. on Tuesday reported a 6 percent drop in earnings, hurt by a $7 million legal settlement and revenue declines linked to the continued advertising slump.',
		'Harte-Hanks Reports Drop in 4Q profit',
		'',
		'Copyright 2010 The Associated Press. All rights reserved. This material may not be published, broadcast, rewritten or redistributed.',
		'',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'ap_2010_02_02_ap.online.all_D9DK95V81_news_ap_org.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-01T05:31:07');
	publicationMetadata = new MakePublicationMetadata('PRNewswire');

	title = 'Proxibid Hires 90octane for SEO and Paid Search';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Proxibid Hires 90octane for SEO and Paid Search',
		'DENVER, Feb. 1 /PRNewswire/ -- Proxibid, the world\'s largest provider of live auction webcasting services, has hired conversion-driven marketing agency 90octane for a strategic search engine marketing (SEM) program. Search engine optimization (SEO) tactics...',
		'Proxibid Hires 90octane for SEO and Paid Search',
		'',
		'Copyright PRNewswire 2010',
		'DENVER',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_01_comtex_140707269.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-01T09:04:16');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'Infogroup\'s OneSource Breaks New Ground with LiveContent Next Generation Information Platform for Sales Intelligence, Marketing...';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Infogroup\'s OneSource Breaks New Ground with LiveContent Next Generation Information Platform for Sales Intelligence, Marketing...',
		'',
		'Infogroup\'s OneSource Breaks New Ground with LiveContent Next Generation Information Platform for Sales Intelligence, Marketing...',
		'',
		'Copyright Business Wire 2010',
		'OMAHA, Neb.',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_01_comtex_140715065.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-01T08:14:08');
	publicationMetadata = new MakePublicationMetadata('PRNewswire');

	title = 'AdSafe Releases Q4 2009 Online Display Advertising Safety Review';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'AdSafe Releases Q4 2009 Online Display Advertising Safety Review',
		'NEW YORK, Feb. 1 /PRNewswire/ -- AdSafe Media, the rating standard of online media, today released its fourth quarter analysis of the online display advertising industry. The report, available at http://www.adsafemedia.com/, provides a comprehensive review...',
		'AdSafe Releases Q4 2009 Online Display Advertising Safety Review',
		'',
		'Copyright PRNewswire 2010',
		'NEW YORK',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_01_comtex_140711568.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-01T09:04:43');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'CDS Global Acquires Optima';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'CDS Global Acquires Optima',
		'',
		'CDS Global Acquires Optima',
		'',
		'Copyright Business Wire 2010',
		'DES MOINES, Iowa',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_01_comtex_140715095.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-02-01T09:16:06');
	publicationMetadata = new MakePublicationMetadata('PRNewswire');

	title = 'Distilled Establishes SEO Consulting Partnership with SEOmoz';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Distilled Establishes SEO Consulting Partnership with SEOmoz',
		'SEATTLE, Feb. 1 /PRNewswire/ -- Today, one of the UK\'s fastest growing digital marketing agencies*, Distilled [http://www.distilledconsulting.com]/, announced the opening of its first United States office and a formal partnership with SEOmoz [http://www.seomoz.org]/....',
		'Distilled Establishes SEO Consulting Partnership with SEOmoz',
		'',
		'Copyright PRNewswire 2010',
		'SEATTLE',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_02_01_comtex_140715436.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-30T16:43:32');
	publicationMetadata = new MakePublicationMetadata('Associated Press');

	title = 'News Corp. to Pay $500M Settlement to Valassis';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'News Corp. to Pay $500M Settlement to Valassis',
		'LIVONIA, Mich. - News Corp. subsidiary News America Marketing has agreed to pay rival Valassis Communications Inc. $500 million to settle antitrust charges.',
		'News Corp. to Pay $500M Settlement to Valassis',
		'',
		'Copyright 2010 The Associated Press. All rights reserved. This material may not be published, broadcast, rewritten or redistributed.',
		'',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'ap_2010_01_30_ap.online.all_D9DIAG100_news_ap_org.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-29T10:46:38');
	publicationMetadata = new MakePublicationMetadata('M2 Communications');

	title = 'EC Starts Case Against Italy Over Telemarketing Databases';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'EC Starts Case Against Italy Over Telemarketing Databases',
		'The European Commission has launched a legal action against Italy for EU ePrivacy regulation infringement. Under EU law, subscribers who are included in a public subscriber directory must be informed about the objectives of the directory and agree to...',
		'EC Starts Case Against Italy Over Telemarketing Databases',
		'',
		'(C)2010 DMeurope.com (',
		'',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'm2c_2010_01_29_DME_0000-0353-DME_201001291046381_75',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-28T12:23:08');
	publicationMetadata = new MakePublicationMetadata('PRNewswire');

	title = 'ZAGAT TO GO 3.0 Adds Off-Line Sync and Augmented Reality';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'ZAGAT TO GO 3.0 Adds Off-Line Sync and Augmented Reality',
		'NEW YORK, Jan. 28 /PRNewswire/ -- Today, Zagat Survey announced the release of ZAGAT TO GO(SM) 3.0 for iPhone(TM) and iPod?? touch users. Developed with Handmark??, a global leader in the development and distribution of mobile applications and services,...',
		'ZAGAT TO GO 3.0 Adds Off-Line Sync and Augmented Reality',
		'',
		'Copyright PRNewswire 2010',
		'NEW YORK',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_01_28_comtex_140581203.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-28T16:34:17');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'Baruch College\'s Marketing Programs Garner Support from the Interpublic Group';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Baruch College\'s Marketing Programs Garner Support from the Interpublic Group',
		'',
		'Baruch College\'s Marketing Programs Garner Support from the Interpublic Group',
		'',
		'Copyright Business Wire 2010',
		'NEW YORK',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_01_28_comtex_140591775.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-28T08:34:27');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'hawkeye Joins Forces with TXT4CRM to Provide Customized Mobile Marketing Solutions';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'hawkeye Joins Forces with TXT4CRM to Provide Customized Mobile Marketing Solutions',
		'',
		'hawkeye Joins Forces with TXT4CRM to Provide Customized Mobile Marketing Solutions',
		'',
		'Copyright Business Wire 2010',
		'DALLAS',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_01_28_comtex_140573166.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-28T08:06:49');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'Acxiom Announces Third Quarter Fiscal Year 2010 Results';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Acxiom Announces Third Quarter Fiscal Year 2010 Results',
		'',
		'Acxiom Announces Third Quarter Fiscal Year 2010 Results',
		'',
		'Copyright Business Wire 2010',
		'LITTLE ROCK, Ark.',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_01_28_comtex_140571351.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-28T09:04:26');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'Money Mailer Offers Self-Service Text Coupon Software to Its Customer Base';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Money Mailer Offers Self-Service Text Coupon Software to Its Customer Base',
		'',
		'Money Mailer Offers Self-Service Text Coupon Software to Its Customer Base',
		'',
		'Copyright Business Wire 2010',
		'GARDEN GROVE, Calif.',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_01_28_comtex_140574728.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-28T08:04:22');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'Acquirgy Announces New VP of Media Kristine Lilly';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Acquirgy Announces New VP of Media Kristine Lilly',
		'',
		'Acquirgy Announces New VP of Media Kristine Lilly',
		'',
		'Copyright Business Wire 2010',
		'ST. PETERSBURG, Fla.',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_01_28_comtex_140571257.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-27T19:47:26');
	publicationMetadata = new MakePublicationMetadata('Associated Press');

	title = 'Netflix Adds 1.1M Customers, 4Q Profit Up 36 pct';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Netflix Adds 1.1M Customers, 4Q Profit Up 36 pct',
		'SAN FRANCISCO - Netflix Inc.\'s fourth-quarter performance sparkled as its DVD-by-mail service surpassed 12 million subscribers, and management promised an even shinier sequel to kick off this year. Investors applauded, lifting the company\'s shares by...',
		'Netflix Adds 1.1M Customers, 4Q Profit Up 36 pct',
		'By MICHAEL LIEDTKE (AP Technology Writer)',
		'Copyright 2010 The Associated Press. All rights reserved. This material may not be published, broadcast, rewritten or redistributed.',
		'',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'apdigital_2010_01_27_ap.online.high-tech_D9DGDT700_news_ap_org.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-27T08:34:02');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'Hoveround Personal Mobility Vehicles Names Mercury Media Agency of Record';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Hoveround Personal Mobility Vehicles Names Mercury Media Agency of Record',
		'',
		'Hoveround Personal Mobility Vehicles Names Mercury Media Agency of Record',
		'',
		'Copyright Business Wire 2010',
		'MARLBORO, Mass.',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_01_27_comtex_140519805.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-27T08:39:02');
	publicationMetadata = new MakePublicationMetadata('Business Wire');

	title = 'Nancy Harhut Hired as Wilde Agency\'s New Chief Creative Officer';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Nancy Harhut Hired as Wilde Agency\'s New Chief Creative Officer',
		'',
		'Nancy Harhut Hired as Wilde Agency\'s New Chief Creative Officer',
		'',
		'Copyright Business Wire 2010',
		'HOLLISTON, Mass.',
		'',
		'pr'
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_01_27_comtex_140520209.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	documentMetadata = new MakeDocumentMetadata('internal', '2010-01-27T08:21:07');
	publicationMetadata = new MakePublicationMetadata('PRNewswire');

	title = 'Dukky Kicks Off 2010 With New CEO, James P. Treuting';
	metadata = new MakeMetadata(documentMetadata, publicationMetadata, '', '', '', '');

	core = new MakeCore(
		'Dukky Kicks Off 2010 With New CEO, James P. Treuting',
		'NEW ORLEANS, Jan. 27 /PRNewswire/ -- Dukky, a direct response company that utilizes proprietary social sharing technology to increase marketer\'s response rates, has announced their Chief Executive Officer. Mr. James P. Treuting will join the growing company...',
		'Dukky Kicks Off 2010 With New CEO, James P. Treuting',
		'',
		'Copyright PRNewswire 2010',
		'NEW ORLEANS',
		'',
		''
		);

	article = new MakeArticle(title, metadata, core, '');

	contents[++Index] = new MakeContent(
		'comtex_yb_2010_01_27_comtex_140519243.anpa',
		'01265296419438',
		'article',
		'en-US',
		'',
		article
		);

		
	

//////////////////////// End PER ARTICLE section

	contentSetId = '172_DIRECT';
	contentSetName = 'DIRECT';
	contentSetLanguage = '';
	contentSetPublishedDate = '2010-02-04T09:21:19';

	id = '172_DIRECT';
	contentType = '';

} // End data initialization block.

if (typeof ContentIndex == "undefined") {
	ContentIndex = -1;
}

SMContentSet[++ContentIndex] = new MakeContentSet(contentSetId, contentSetName, contentSetLanguage, contentSetPublishedDate, contents);
