
/* --------------------------------------------------------------------------------------- */
function ShowVideo(nVideo)
{
	// Video = 320x240 - Width x Height
	var w = 320 + 16;
	var h = 240 + 80;
	var nScroll = 0;

	var t = (screen.height - h) / 2;
	var l = (screen.width - w) / 2;

	var xPopup = window.open ("../Video/ShowVideo.asp?Pos=" + nVideo, "ShowVideo", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + nScroll + ",resizable=no,copyhistory=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t)

	xPopup.focus();
}
/* --------------------------------------------------------------------------------------- */

