function doPopup(x,y,name,url){
var t,l;
var w;

	t	= (screen.height - y)/2;
	l	= (screen.width - x)/2;
	winstyle="width=" + x + ",height=" + y + ",resizable=no,scrollbars=no,status=no,toolbar=no,menubar=no,location=no,screenX=" + l + ",screenY=" + t + ",top=" + t + ",left=" + l + ",scrollbars=auto,resizable=no";
	w = window.open(url,name,winstyle);
	return w;
}

function Launch_BioVid(url)
{
	doPopup(480,360,'player',url);
}

function Launch_BioAud(url)
{
	doPopup(480,100,'player',url);
}
