 
	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 = '20160519';
		 anext["20160519"] = new next_obj('20160197','Henry Winkler on his \'\'Happy Days\'\' as The Fonz','/ew/article/0,,20152957_20152962_20160197,00.html','11/14/2007 06:05PM');
		 anext["20160197"] = new next_obj('20160167','\'\'M*A*S*H\'\' star Alan Alda on life as Hawkeye','/ew/article/0,,20152957_20152962_20160167,00.html','11/14/2007 05:00PM');
		 anext["20160167"] = new next_obj('20160204','Bob Newhart on his lifetime in showbiz','/ew/article/0,,20152957_20152962_20160204,00.html','11/14/2007 07:00PM');
		 anext["20160204"] = new next_obj('20058622','Extra-special credits! 15 classic TV openers','/ew/article/0,,20152957_20152962_20058622,00.html','09/25/2007 07:00PM');
		 anext["20058622"] = new next_obj('20055234','Regis and Kelly: Our favorite memories','/ew/article/0,,20152957_20152962_20055234,00.html','09/06/2007 08:00PM');
		 anext["20055234"] = new next_obj('1021863','Johnny Carson\'s greatest moments','/ew/article/0,,20152957_20152962_1021863,00.html','01/31/2005 10:00AM');
		 anext["1021863"] = new next_obj('20010643','A look at Sally Field\'s career','/ew/article/0,,20152957_20152962_20010643,00.html','02/02/2007 10:00AM');
		 anext["20010643"] = new next_obj('20042736','Owen Gleiberman analyzes the \'\'Sopranos\'\' finale','/ew/article/0,,20152957_20152962_20042736,00.html','06/14/2007 07:00PM');
		 anext["20042736"] = new next_obj('20041710','Bob Barker on saying goodbye to \'\'The Price Is Right\'\'','/ew/article/0,,20152957_20152962_20041710,00.html','06/08/2007 10:00AM');
		 anext["20041710"] = new next_obj('594342','\'\'Friends\'\' exclusive: EW interviews the cast','/ew/article/0,,20152957_20152962_594342,00.html','02/24/2004 06:00PM');
		 anext["594342"] = new next_obj('456224','The women of \'\'Sex\'\' dish on six seasons of sin','/ew/article/0,,20152957_20152962_456224,00.html','06/03/2003 12:00PM');
		 anext["456224"] = new next_obj('485429','Here\'s why we\'ll remember John Ritter','/ew/article/0,,20152957_20152962_485429,00.html','09/12/2003 12:00PM');
		 anext["485429"] = new next_obj('20160519','Cracking up with Carol Burnett','/ew/article/0,,20152957_20152962_20160519,00.html','11/15/2007 07:00PM');
		 








