var newwindow;
var siteAddress = "http://g6publish.videodome.com/vegtvg6/portal/index.aspx?Channel=";

function openPlayer(channel, clipid, mediaBitrate)
{
	
	url = siteAddress + channel + "&clipID=" + clipid + "&bitrate=" + mediaBitrate;
	newwindow=window.open(url,'name','height=510,width=790');
	
	if(newwindow) {
		if (window.focus) {newwindow.focus()}
		}
		else
		{
			alert("Please turn off your popup blocker!");
		}

}