// ************************
// Popup utility routines *
// ************************
function openVideo(mpegString) {
	var b = 450;
	var h = 380;
	var x = 150;
	var y = 100;
	var sb = 0;
	var rs = 1; // resizeable
	var st = 0; // status
	var mb = 0; // menubar
	var tb = 0; // toolbar
	var dir = 0; // directories
	var loc = 0; // location
	var wProperties;
	wProperties='location='+loc+',toolbar='+tb+',menubar='+mb+',directories='+dir+',status='+st+',resizable='+rs+',scrollbars='+sb+',left='+x+',top='+y+',screenX='+x+',screenY='+y+',width='+b+',height='+h+'';
	window.open('video.php?video='+mpegString,'mpegWindow',wProperties,false);
	return true;
} // End of openVideo

