function openVid(src) {
	width = 600;
	height = 500;
	openWindow(src, width, height, false);
}

function openWindow(src, width, height, scroll) {
	window.open(src, 'picture', "width=" + width + ",height=" + height + ",left=" + Math.round((screen.width - width) / 2) + ",top=" + Math.round((screen.height - height) / 2 - 40) + ",scrollbars=" + (scroll ? 1 : 0) + ",resizable=0,status=0").focus();
}