function openChildWin(strUrl,strTitle,intWidth,intHeight,blnCenter,intLeft,intTop,blnToolBar,blnMenuBar,blnScrollBars,blnStatusBar,blnResizable)
{

	w_width = intWidth;
	w_height = intHeight;

	if (blnCenter)
	{
		s_width = window.screen.availWidth;
		s_height = window.screen.availHeight;
		
		left_pos = (Math.round(s_width / 2)) - (Math.round(w_width / 2));
		top_pos = (Math.round(s_height /2)) - (Math.round(w_height / 2));
	}
	else
	{
		left_pos = intLeft;
		top_pos = intTop;
	}
	
	if (blnToolBar){s_toolbar = "yes";}else{s_toolbar="no";}
	if (blnMenuBar){s_menubar = "yes";}else{s_menubar="no";}
	if (blnScrollBars){s_scrollbars="yes";}else{s_scrollbars="no";}
	if (blnStatusBar){s_statusbar="yes";}else{s_statusbar="no";}
	if (blnResizable){s_resizable="yes";}else{s_resizable="no";}

	oWin = window.open(strUrl,strTitle,"left=" + left_pos + ",top="+ top_pos +",width="+ w_width +",height="+ w_height +",toolbar=" + s_toolbar + ",menubar="+ s_menubar +",scrollbars="+ s_scrollbars +",statusbar="+ s_statusbar +",resizable=" + s_resizable,true);
	oWin.focus();

}

function openPlayerWin(strUrl)
{
	openChildWin(strUrl,"apdMember",485,425,true,0,0,false,false,true,false,false);
}

