// JavaScript Document

function openPlayer(cid, id, chid, type)
{
    var ScreenWidth=window.screen.width;
    var ScreenHeight=window.screen.height;	
    var movefromedge=0;
    placementx=(ScreenWidth/2)-((980)/2);
    placementy=(ScreenHeight/2)-((630+50)/2);

    var PopUpUrl = "http://media.aspireone.com/mediaplayer/" + cid + "?";
    var search = "";
	
	if (id != undefined)
	{
		PopUpUrl += "&id=" + id;
	}
	
	if (chid != undefined)
	{
		PopUpUrl += "&chid=" + chid;
    }

    if (search != "")
    {
        PopUpUrl += "&search=" + search;
    }
    
    if (type != undefined)
    {
        PopUpUrl += "&type=" + type;
    } 
	
	
	window.open(PopUpUrl,"Player","width=980,height=630,toolbar=0,location=0,directories=0,status=0,scrollbars=0,menubar=0,resizable=0,left="+placementx+",top="+placementy+",screenX="+placementx+",screenY="+placementy+",");
}


