function newWindow(url, name, width, height)
{
	var wnd = window.open(url, name, "width=" + width + ",height=" + height + ",location=no,menubar=no,resizable=yes,status=no,toolbar=no")
	wnd.focus()
}