function _popup(url, windowname, width, height, scrollbars) {
	var win = window.open(url, windowname, "toolbar=no, width=" + width + ", height=" + height + ", resizable=yes, scrollbars=" + scrollbars + ", menubar=no, directories=no");
//	if (win.focus != null)
	win.focus();
}

