<!--

	function popUp(center,url,winName,width,height,features) {
		if (center) {
			var x = (640 - width) / 2; 
			var y = (480 - height) / 2;
			if (screen) {
				y = (screen.availHeight - height) / 2;
				x = (screen.availWidth - width) / 2;
			}
			if (screen.availWidth > 1800) { 
				x = ((screen.availWidth / 2) - width) / 2; 
			} 
		}
		var newWin = window.open(url,winName,'scrollbars=no,width='+width+',height='+height+',screenX='+x+',screenY='+y+',top='+y+',left='+x+','+features);
		newWin.focus();
	}	
	
	function mediaGalleryPopup(id,type) {
		
		//http://dipsy.pbs.org/thewar/final_site/search_details.php?id=5237&type=2
		//popUp(true,'search_details.php?id=' + id +'&type=' + type,'mediaGalleryPopup',860,800,'toolbar=yes,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,status=yes');
		popUp(true,'detail_'+id+'.htm','mediaGalleryPopup',860,800,'toolbar=yes,location=no,directories=no,menubar=no,scrollbars=yes,resizable=yes,status=yes');
	}	
	

//-->
