/*	subscribe.js
	Function to display a rotating subscription ad message at top of story
	JA 11-1-04 */
	
/* Modified 12-22-04 to show only donations link promo   TM */

var text = new Array(2), url = new Array(2), n = Math.floor (Math.random()*2);


text[0] = 'Help the Monitor. Give your tax-deductible donation to support independent journalism.';
url[0] = 'http://www.csmonitorservices.com/csmdonations?D-StoryTopText';
text[1] = 'Help the Monitor. Give your tax-deductible donation to support independent journalism.';
url[1] = 'http://www.csmonitorservices.com/csmdonations?D-StoryTopText';
document.write ('<a href="' + url[n] + '" style="font-weight:bold">' + text[n] + '</a>');

