/*   All Javascript code is Copyright 2009 HunterGD @ HunterGD.com   *
*  Do not use or borrow my code without giving credit to me, at the  *
*  least, please leave this header with the code.                   */

/* video Popup */

var videoViewer;

var viewerSettings = "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=no";

var windowHeight= 450;
var windowWidth = screen.availWidth*.50;

var positionX = Math.round(eval((screen.availWidth - windowWidth)/2));
var positionY = 75;

function showVideo(videoID)
{
	top.infoViewer = window.open("/video.php?id=" + videoID, "videoViewer", viewerSettings + ",width=" + windowWidth + ",height=" + windowHeight + "screenX=" + positionX + ",screenY=" + positionY + ",left=" + positionX + ",top=" + positionY);

	infoViewer.focus();
}