<!-- //
	function videoPlayer (in_path) {
		
		var v1Dimensions = "height=630, width=917";
		var v2Dimensions = "height=662, width=991";
		var playerDimensions = v2Dimensions; // default
		
		//if the file matches the kids player v1 path then use the v1 dimensions
//	if 	((in_path.indexOf('/video/player/animals.html') == 0)||
//			(in_path.indexOf('/video/player/environment.html') == 0)||
//			(in_path.indexOf('/video/player/featured-videos.html') == 0)||
//			(in_path.indexOf('/video/player/kids.html') == 0)||
//			(in_path.indexOf('/video/player/people-and-places.html') == 0)||
//			(in_path.indexOf('/video/player/world-music.html') == 0)){
	
		//if (in_path.indexOf('/video/player/kids.html')>-1){
		//	playerDimensions = v1Dimensions;
		//}
		
		var ngvideoplayer = window.open (	in_path, 
																			'ngvideoplayer', 
																			playerDimensions + ', toolbar=no, location=no, ' + 
																			'directories=no, status=yes, menubar=no, resizable=yes, scrollbars=no');

		if (ngvideoplayer)
			var popUpsBlocked = false
		else
			var popUpsBlocked = true
	
		if (popUpsBlocked)
			alert('In order to display the video player, please adjust your browser settings\nto allow for pop-up windows from nationalgeographic.com.');

		if (window.focus) { ngvideoplayer.focus() }
	}
// -->