
function bcPlayer(vid)
{
	if(typeof vid == "string" && vid.indexOf("link.brightcove.com") > -1)
	{
		var searchforId = vid.match(/bctid[0-9]+/g);
		if(searchforId != null)
		{
			vid = searchforId[0].replace("bctid","");
		}
		else
		{
			return false;
		}
	}
	var intheight = 529;
	var intwidth = 993;

	var strURL = domainresolve() + '/tvradio/bcPlayer.asp?videoId=' + vid;
	var strTarget = 'bcplayer';
	var strWindowParam = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + intwidth + ',height=' + intheight;
		
	bcWindow = window.open(strURL, strTarget, strWindowParam);
	if (bcWindow != null)
	{
		bcWindow.focus();
	}
}

function domainresolve()
{
	var pagedomain = location.protocol + "//" + location.hostname;
	if(location.port && location.port != "")
	{
		pagedomain += ":" + location.port;
	}
	return pagedomain;
}