function OpenWnd(name, w, h)
{
	var wnd = window.open(name, "new"+name.length,
		"width="+w+",height="+h+",status=1,title=Title,toolbar=0,menubar=0,scrollbars=1,resizable=1");
		
	return wnd;
}