/* --------------------------------------------------------------- */
function ShowVideo(cVideo)
{
	var t, l, h, w, nScroll;
	var xPopup;

	// alert(encodeURI(cVideo));
	// xPopup = window.open ("ShowVideo.asp?Video=" + encodeURI(cVideo), "ShowVideo", "");
	// xPopup = window.open ("ShowVideo.asp?Video=" + encodeURI(cVideo), "ShowVideo", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t)

	xPopup = window.open ("ShowVideo.asp?Video=" + encodeURI(cVideo), "ShowVideo", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no");
	xPopup.focus();
}


function ShowVideoFLV(cVideo, sizeWH)
{
	var xPopup;
	var cResizable = "no";

	var sizeVideo = sizeWH;	// Width x Height

	var w = Number(sizeVideo.split("x")[0]);
	var h = Number(sizeVideo.split("x")[1]);
	
	var t = (screen.height - h) / 2;
	var l = (screen.width - w) / 2;	

	xPopup = window.open ("ShowVideoFLV.asp?Video=" + encodeURI(cVideo), "ShowVideo", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=" + cResizable + ",copyhistory=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t);
	xPopup.focus();
}
/* --------------------------------------------------------------- */

