function showWnd(url, width, height)
{
	var newx = width+30;
	var newy = height+110;
	wnd = window.open(url, null, "height=" + newx + ", width=" + newy + ", top=" + (window.screen.availHeight / 2 - height / 2) + ", left=" + (window.screen.availWidth / 2 - width / 2) + ", status=yes, toolbar=no, menubar=no, location=no", true);

	if(wnd)
	{
		wnd.focus();
		wnd.moveTo(window.screen.availWidth / 2 - width / 2, window.screen.availHeight / 2 - height / 2);


		wnd.resizeTo(newx, newy);

		if(!wnd.opener)
			wnd.opener = self;
	}
	return wnd;
}
