var isMSIE = /*@cc_on!@*/false;

function open_wnd(url,h,w)
{
	if(isMSIE)
	{
		window.showModalDialog(url,'','center:yes ; dialogHeight='+h+'px; dialogWidth='+w+'px;');
	}
	else
	{
		newWindow = window.open(url,'subWind', 'fullscreen,height='+h+',width='+w+'');
		newWindow.focus();
	}
}
