function popup(url, width, height) {
	if (!width) {
		width = 800;
	}
	if (!height) {
		height = 600;
	}
	open(url, "popup", "width=" + width + ",height=" + height);
	return false;
}


