 
	var anext = new Array();
	var rnext = new Array();
	function next_obj(article_id,title,link,date){
		 this.article_id=article_id;
		this.link=link;
		 this.title=title;
		 this.date=date;
	}
	
	function get_next_article_link_embedded(jsID,jsType) {
				var nextList = anext;
		var nextString = '';
		if (jsType=="review") {
			nextList = rnext;
			if (nextList[jsID] == null) {
				nextList = anext;
			}
		}  
		

		if (nextList[jsID] != null) {
			var obj = nextList[jsID];
		
			var link = obj.link;
			var title= obj.title;

			var nextString = '<a href="' + link +'">'+ title +'</a>'
		
		} 
		return nextString
		
		
	}
	
	function get_next_article_link(jsID,jsType) {
		var nextList = anext;
		var nextString = '';
		var defaultName = 'firstIdanext';
		if (jsType=="review") {
			nextList = rnext;
			defaultName = 'firstIdrnext'
			if (nextList[jsID] == null) {
				nextList = anext;
			}
		}  
		

		if (nextList[jsID] != null) {
			var obj = nextList[jsID];
		} else {
			var did = eval(defaultName);
			var obj = nextList[did];
		}
			var link = obj.link;
			var title= obj.title;

			var nextString = '<div class="nextlink"><div class="title" title="Next">Next</div> <div class="link"><a href="' + link +'">'+ title +'</a></div><div style="clear:both;"></div></div>';  return nextString
	}
	

var anext = new Array();
		var firstIdanext = '20042105';
		 anext["20042105"] = new next_obj('20042051','2007 Tony Awards: The winners','/ew/article/0,,20037400_20038186_20042051,00.html','06/10/2007 10:00PM');
		 anext["20042051"] = new next_obj('20041916','Volleying with Tony nominee Angela Lansbury','/ew/article/0,,20037400_20038186_20041916,00.html','06/08/2007 05:15PM');
		 anext["20041916"] = new next_obj('20039670','Mo Rocca eyes the Tony nominations','/ew/article/0,,20037400_20038186_20039670,00.html','05/21/2007 06:00PM');
		 anext["20039670"] = new next_obj('20040765','EW predicts the 2007 Tony Award winners','/ew/article/0,,20037400_20038186_20040765,00.html','05/30/2007 06:00PM');
		 anext["20040765"] = new next_obj('20039987','New on CD: \'\'High Fidelity\'\' and Barbara Cook','/ew/article/0,,20037400_20038186_20039987,00.html','05/23/2007 04:00PM');
		 anext["20039987"] = new next_obj('20038916','\'\'Spring Awakening\'\' leads Tony noms','/ew/article/0,,20037400_20038186_20038916,00.html','05/15/2007 09:00AM');
		 anext["20038916"] = new next_obj('20016347','Broadway stars turn out for \'\'Putnam County Bee\'\'','/ew/article/0,,20037400_20038186_20016347,00.html','03/29/2007 01:00PM');
		 anext["20016347"] = new next_obj('20016118','A chat with Broadway\'s new Sandy and Danny','/ew/article/0,,20037400_20038186_20016118,00.html','03/27/2007 01:00PM');
		 anext["20016118"] = new next_obj('20035185','Hairspray','/ew/article/0,,20037400_20038186_20035185,00.html','04/16/2007 05:00PM');
		 anext["20035185"] = new next_obj('20016233','\'\'Goonies\'\' might be Broadway bound','/ew/article/0,,20037400_20038186_20016233,00.html','03/28/2007 03:00PM');
		 anext["20016233"] = new next_obj('20033892','Talking to Kevin Spacey','/ew/article/0,,20037400_20038186_20033892,00.html','04/06/2007 10:00AM');
		 anext["20033892"] = new next_obj('20015772','Christian Hoff is the master of mimicry','/ew/article/0,,20037400_20038186_20015772,00.html','03/23/2007 10:00AM');
		 anext["20015772"] = new next_obj('20015658','It\'s \'\'Bellobration\'\' time for Ringling Bros. and Barnum and Bailey','/ew/article/0,,20037400_20038186_20015658,00.html','03/21/2007 06:00PM');
		 anext["20015658"] = new next_obj('20006512','Shows of the year 2006','/ew/article/0,,20037400_20038186_20006512,00.html','12/22/2006 10:00AM');
		 anext["20006512"] = new next_obj('1203059','Highlights from the Tonys','/ew/article/0,,20037400_20038186_1203059,00.html','06/12/2006 11:00AM');
		 anext["1203059"] = new next_obj('20042105','Tony wrapup: Our day-after dish on the awards','/ew/article/0,,20037400_20038186_20042105,00.html','06/11/2007 02:00PM');
		 








