 
	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 = '20045337';
		 anext["20045337"] = new next_obj('1131187','Harry Potter and the Goblet of Fire','/ew/article/0,,20044270_20044273_1131187,00.html','11/16/2005 01:10PM');
		 anext["1131187"] = new next_obj('644977','Harry Potter and the Prisoner of Azkaban','/ew/article/0,,20044270_20044273_644977,00.html','06/02/2004 12:00PM');
		 anext["644977"] = new next_obj('389817','Harry Potter and the Chamber of Secrets','/ew/article/0,,20044270_20044273_389817,00.html','11/13/2002 01:00PM');
		 anext["389817"] = new next_obj('184515','Harry Potter and the Sorcerer\'s Stone','/ew/article/0,,20044270_20044273_184515,00.html','11/14/2001 03:00PM');
		 anext["184515"] = new next_obj('20045337','Harry Potter and the Order of the Phoenix','/ew/article/0,,20044270_20044273_20045337,00.html','07/10/2007 12:00PM');
		 








