 
	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 = '20237005';
		 anext["20237005"] = new next_obj('20169700','Two new Bond girls: Arterton and Kurylenko','/ew/article/0,,20159002_20159109_20169700,00.html','01/07/2008 07:00AM');
		 anext["20169700"] = new next_obj('20181428','Exclusive: Bond\'s new book','/ew/article/0,,20159002_20159109_20181428,00.html','02/29/2008 08:05PM');
		 anext["20181428"] = new next_obj('20159271','James Bond: The spy who raised me','/ew/article/0,,20159002_20159109_20159271,00.html','11/08/2007 05:00PM');
		 anext["20159271"] = new next_obj('1560072','Countdown: Ranking the Bond films','/ew/article/0,,20159002_20159109_1560072,00.html','11/15/2006 10:00PM');
		 anext["1560072"] = new next_obj('20009645','Pierce Brosnan talks about life after Bond','/ew/article/0,,20159002_20159109_20009645,00.html','01/24/2007 06:30PM');
		 anext["20009645"] = new next_obj('20219700','James Bond\'s killer instincts','/ew/article/0,,20159002_20159109_20219700,00.html','08/15/2008 03:00PM');
		 anext["20219700"] = new next_obj('20237758','Quantum of Solace','/ew/article/0,,20159002_20159109_20237758,00.html','11/04/2008 12:15PM');
		 anext["20237758"] = new next_obj('20237005','\'Quantum of Solace\': Exclusive pics!','/ew/article/0,,20159002_20159109_20237005,00.html','10/30/2008 04:00PM');
		 








