 
	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 = '20237758';
		 anext["20237758"] = new next_obj('1559753','Casino Royale','/ew/article/0,,20159002_20159108_1559753,00.html','11/15/2006 12:00PM');
		 anext["1559753"] = new next_obj('392638','Die Another Day','/ew/article/0,,20159002_20159108_392638,00.html','11/21/2002 06:00AM');
		 anext["392638"] = new next_obj('64373','The World Is Not Enough','/ew/article/0,,20159002_20159108_64373,00.html','11/19/1999 12:30AM');
		 anext["64373"] = new next_obj('281472','Tomorrow Never Dies','/ew/article/0,,20159002_20159108_281472,00.html','01/09/1998 12:00AM');
		 anext["281472"] = new next_obj('299672','Goldeneye','/ew/article/0,,20159002_20159108_299672,00.html','11/24/1995 12:00AM');
		 anext["299672"] = new next_obj('20237758','Quantum of Solace','/ew/article/0,,20159002_20159108_20237758,00.html','11/04/2008 12:15PM');
		 








