function popup(url, width, height) {
	win=window.open(url, "popup", "width=" + width + ",height=" + height + ",resizable=no,scrollbars=no,toolbar=no,menubar=no,status=no");
	win.focus();
}
