 
	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 = '20206487';
		 anext["20206487"] = new next_obj('20204898','Wayne Coyne on his Flaming new film','/ew/article/0,,20201383_20201387_20204898,00.html','06/05/2008 09:00PM');
		 anext["20204898"] = new next_obj('20204243','8 headliners talk summer tours','/ew/article/0,,20201383_20201387_20204243,00.html','06/03/2008 03:00PM');
		 anext["20204243"] = new next_obj('20201656','Usher: Setting the record straight','/ew/article/0,,20201383_20201387_20201656,00.html','05/21/2008 03:00PM');
		 anext["20201656"] = new next_obj('20201624','Nas: What\'s in a CD name?','/ew/article/0,,20201383_20201387_20201624,00.html','05/21/2008 01:00PM');
		 anext["20201624"] = new next_obj('20179349','Jonas Brothers: Tween idols','/ew/article/0,,20201383_20201387_20179349,00.html','02/22/2008 10:00AM');
		 anext["20179349"] = new next_obj('20173778','Your next music obsessions!','/ew/article/0,,20201383_20201387_20173778,00.html','01/24/2008 07:00PM');
		 anext["20173778"] = new next_obj('20056567','My summer with the Foo Fighters','/ew/article/0,,20201383_20201387_20056567,00.html','09/13/2007 03:30PM');
		 anext["20056567"] = new next_obj('20201930','Summer Music: 14 hot CDs','/ew/article/0,,20201383_20201387_20201930,00.html','05/23/2008 10:00AM');
		 anext["20201930"] = new next_obj('20206487','Coldplay talk \'Viva La Vida\'','/ew/article/0,,20201383_20201387_20206487,00.html','06/12/2008 05:00PM');
		 








