function popup(url, title, width, height, resizable, scrollbars) {
	mywindow=window.open(url, title, "width=" + width + ",height= " + height + ",resizable=" + resizable + ",scrollbars=" + scrollbars);
	mywindow.focus();
	return false;
}