window.name="se_main";

function se_openEditor(url) {
  currentdate = new Date();
  win=window.open(url + "&" + currentdate.getTime(),'se_window_editor','height=750,width=950,top=20,left=20,toolbar=no,location=no,resizable=yes,scrollbars=yes,status=yes');
  //window.setTimeout("se_reloadPage()", 1000); */
  win.focus();
}

function se_reloadPage() {
  location.reload();
}

function se_openConfirmEditor(url, msg) {
  if (window.confirm(msg)) {
    se_openEditor(url);
  }
}
