function open_window(url, width, height, scrollbars) {
  var w = window.open(url, "mywin", "width=" + width + ",height=" + height + ",scrollbars=" + ((scrollbars != true) ? "0" : "1"));
}
