 
	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 = '20038105';
		 anext["20038105"] = new next_obj('20011652','Wonder Woman sets her sights on \'\'Smallville\'\'','/ew/article/0,,20037380_20037382_20011652,00.html','02/12/2007 04:00PM');
		 anext["20011652"] = new next_obj('1542018','First Look! Richard Donner\'s new Superman comic','/ew/article/0,,20037380_20037382_1542018,00.html','10/03/2006 02:00PM');
		 anext["1542018"] = new next_obj('1553872','Audiences bring back TV\'s old favorites','/ew/article/0,,20037380_20037382_1553872,00.html','11/03/2006 10:00AM');
		 anext["1553872"] = new next_obj('1024622','Smallville','/ew/article/0,,20037380_20037382_1024622,00.html','02/07/2005 10:00AM');
		 anext["1024622"] = new next_obj('488234','Smallville: The Complete First Season','/ew/article/0,,20037380_20037382_488234,00.html','09/26/2003 10:00AM');
		 anext["488234"] = new next_obj('1198430','Looking back at The WB','/ew/article/0,,20037380_20037382_1198430,00.html','05/26/2006 10:00AM');
		 anext["1198430"] = new next_obj('1114723','TV\'s Aquamen face off','/ew/article/0,,20037380_20037382_1114723,00.html','10/07/2005 10:00AM');
		 anext["1114723"] = new next_obj('724208','America remembers Christopher Reeve','/ew/article/0,,20037380_20037382_724208,00.html','10/22/2004 10:00AM');
		 anext["724208"] = new next_obj('20038105','MJ, Lana, Lois: Rate superheroes\' love interests!','/ew/article/0,,20037380_20037382_20038105,00.html','05/07/2007 04:00PM');
		 








