 
	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 = '20033231';
		 anext["20033231"] = new next_obj('20008719','This week in \'74: Rating the top 10 hits','/ew/article/0,,20171550_20171623_20008719,00.html','01/16/2007 08:00PM');
		 anext["20008719"] = new next_obj('1561019','This week in \'71: Rating the top 10 singles','/ew/article/0,,20171550_20171623_1561019,00.html','11/17/2006 06:00PM');
		 anext["1561019"] = new next_obj('1543805','This week in \'77: Lots of disco, and Shaun Cassidy','/ew/article/0,,20171550_20171623_1543805,00.html','10/06/2006 06:00PM');
		 anext["1543805"] = new next_obj('1220889','This week in \'72: Rating the top 10 singles','/ew/article/0,,20171550_20171623_1220889,00.html','07/31/2006 07:00PM');
		 anext["1220889"] = new next_obj('1528080','This week in 1978: Rating the top 10 singles','/ew/article/0,,20171550_20171623_1528080,00.html','09/01/2006 05:00PM');
		 anext["1528080"] = new next_obj('20033231','Chart Flashback: Rating the top 10 hits from this week in \'78','/ew/article/0,,20171550_20171623_20033231,00.html','03/30/2007 05:35PM');
		 








