function OpenPopup(path, width, height, windowname, resizable, scrollbars, menubar) {
  openpopup = window.open(path, windowname, "width=" + width + ",height=" + height + ",resizable=" + resizable + ",scrollbars=" + scrollbars + ",menubar=" + menubar);
  openpopup.opener.name = window.name;
}