function popup(url, width, height) {
	var w = window.open(url, "popup", "width="+width+",height="+height+",scrollbars=yes,resizable=no");
	w.focus();
}