// JavaScript Document
function ShowDoctor(objname)
{
		tTop	=	0;
		tLeft	=	(screen.width - 654) / 2;
	openwin("doctor_show_matter.php?userid="+objname,"醫師陣容","width=654,height=350,top=" + tTop + ",left=" + tLeft +",scrollbars=yes");
}
function openwin(url,winName,features) {

	if (typeof (features) == "undefined") 
		var hintW=window.open(url,winName);
	else	
		var hintW = window.open(url,winName,features);
		
	if (!hintW.opener) hintW.opener = self;
    if (hintW.focus != null) hintW.focus();	
}