 
	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 = '20254094';
		 anext["20254094"] = new next_obj('20254105','Best Actor','/ew/article/0,,20007870_20253926_20254105,00.html','01/21/2009 06:50PM');
		 anext["20254105"] = new next_obj('20254106','Best Actress','/ew/article/0,,20007870_20253926_20254106,00.html','01/22/2009 06:00PM');
		 anext["20254106"] = new next_obj('20254107','Best Supporting Actor','/ew/article/0,,20007870_20253926_20254107,00.html','01/21/2009 06:00PM');
		 anext["20254107"] = new next_obj('20254108','Best Supporting Actress','/ew/article/0,,20007870_20253926_20254108,00.html','01/21/2009 06:00PM');
		 anext["20254108"] = new next_obj('20254109','Best Director','/ew/article/0,,20007870_20253926_20254109,00.html','01/21/2009 06:00PM');
		 anext["20254109"] = new next_obj('20254094','Best Picture','/ew/article/0,,20007870_20253926_20254094,00.html','01/22/2009 06:00PM');
		 








