function popup (url, w, h) {
	popup_w = window.open(url, "popup", "menubar=1, resizable=1, scrollbars=1, status=0, left=0, top=0, width=" + w + ",height=" + h);
	if (popup_w)
		popup_w.focus();
}

