<!--
// VidVite ePlayer 2.1
// -->
var popupHandle;

function openPlayer(path, height, width) 
{
	var url =  "http://www.vidvite.com/" + path + "/popup.php";
	displayPopup(url, 'ePlayer', height, width);
}

function openPlayerWithTitle(path, height, width, title)
{
	var url = "http://www.vidvite.com/" + path + "/popup.php&title=" + title;
	displayPopup(url, 'ePlayer', height, width);
}

function closePopup()
{
	if(popupHandle != null && !popupHandle.closed) 
		popupHandle.close()
}

function displayPopup(url,name,height,width)
{
	var leftvar = (screen.width - width) / 2;
	var topvar = (screen.height - height) / 2;
	var properties = "statusbar=1,status=1,toolbar=0,location=0,height="+height+",width="+width+",top="+topvar+",left="+leftvar;

	// If one was open, close it...
	closePopup();

	// Open the new on,e and give it focus...
	popupHandle = window.open(url,name,properties);
	popupHandle.window.focus();
}
//-->
