var popupWindow;

function popup(url, name, width, height)
{
	popupWindow = window.open(url, name, (width ? ("width=" + width + ",") : "") + (height ? ("height=" + height + ",") : "") + "status,resizable,scrollbars");
	popupWindow.focus();
	return (popupWindow ? true : false);
}
