<!--  Hide script from older browsers
function popVideo(movie) {
	var screenW, screenH, posX, posY, popupHeight, popupWidth;
	popupHeight = 330;
	popupWidth = 530;
	if (parseInt(navigator.appVersion)>3) {
		screenW = screen.width;
		screenH = screen.height;
		posX=Math.floor((screenW-popupWidth)/2);
		posY=Math.floor((screenH-popupHeight)/2);
	}
	else {
		posX=0;
		posY=0;
	}
	
	configStr='width='+popupWidth+',height='+popupHeight+',screenX='+posX+',screenY='+posY+',top='+posY+',left='+posX+',scrollbars=no,resizable=no,toolbar=no,menubar=no';
	popupWin = window.open('/documentaries/video_player.html?'+movie,'documentaries',configStr);
	popupWin.focus();
}

//-->


