function CenterSizeableWindow(tWidth,tHeight,url,wName)
{
	var winL = (screen.width - tWidth) / 2;
	var winT = (screen.height - tHeight) / 2;

	wEdit=window.open(url,wName,"width="+tWidth+",height="+tHeight+",top="+winT+",left="+winL+",status=no,toolbar=no,menubar=no,scrollbars=yes,resizable=yes");
    
    wEdit.focus;
}

function CenterWindow(tWidth,tHeight,url,wName)
{
	var winL = (screen.width - tWidth) / 2;
	var winT = (screen.height - tHeight) / 2;

	wEdit=window.open(url,wName,"width="+tWidth+",height="+tHeight+",top="+winT+",left="+winL+",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no");
    
    wEdit.focus;
}

function mediaplayer (menu,item) 
{
	if (typeof menu != 'undefined')
	{       
		CenterWindow(705,550,"http://demo.ccnmediaplayer.com?goMenu="+menu+"&goItem="+item,"mediaplayer")
	}
    else 
    {
		CenterWindow(705,550,"http://demo.ccnmediaplayer.com","mediaplayer")
    }
}
