// JavaScript Document

function openPlayer(cid,id,chid)
{
    var ScreenWidth=window.screen.width;
    var ScreenHeight=window.screen.height;	
    var movefromedge=0;
    placementx=(ScreenWidth/2)-((770)/2);
    placementy=(ScreenHeight/2)-((630+50)/2);
	
    var PopUpUrl= "http://www.aspireonemedia.com/mediaPlayer/playerHome.asp?cid=" + cid;
	
	if (id != undefined)
	{
		PopUpUrl += "&id=" + id
	}
	
	if (chid != undefined)
	{
		PopUpUrl += "&chid=" + chid
	}
	//alert(PopUpUrl);
	
	window.open(PopUpUrl,"Player","width=770,height=630,toolbar=0,location=0,directories=0,status=0,scrollbars=0,menubar=0,resizable=0,left="+placementx+",top="+placementy+",screenX="+placementx+",screenY="+placementy+",");
}

