/* --------------------------------------------------------------- */
function ShowVideoSpot(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 ("../PopUpVideo09/ShowVideoSpot.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();
}
/* --------------------------------------------------------------- */

/* --------------------------------------------------------------- */
function ShowMP3(cAudio)
{

	var xPopup;
	var cResizable = "no";

	var w = 400;
	var h = 150;
	
	var t = (screen.height - h) / 2;
	var l = (screen.width - w) / 2;	

	xPopup = window.open ("../Video/" + encodeURI(cAudio), "ShowMP3", "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();

}
/* --------------------------------------------------------------- */

