
function showPaneEditor(paneName) {
  var editorWindow = window
    .open("edit.php?f="+paneName, "editordialog", "addressbar=no,toolbar=no,menubar=no");
  editorWindow.focus();
}

function createInfoPane() {
  document.write("<div id=jdssInfoPane class=infoPaneStyle align=right style=\"display: none\">");
  document.write("</div>");
}

function showInfoPane(x,y,w,h,infourl) {
  var infoPane = document.getElementById("jdssInfoPane");
  infoPane.innerHTML = "<a class=buttonLink href=\"#\" onclick=\"closeInfoPane()\">[close]</a><br><iframe frameborder=0 scrolling=no src=\"infoPane.php?infourl="+infourl+"\" style=\"width: "+w+"; height: "+h+"\"></iframe>";
  infoPane.style.left = x;
  infoPane.style.top = y;
  infoPane.style.width = w;
  infoPane.style.height = h;
  infoPane.style.display = "";
}

function closeInfoPane() {
  document.getElementById("jdssInfoPane").style.display = "none";
}

var currentInfoDialog = null;

function showInfoDialog(w,h,infourl) {
  if (currentInfoDialog != null) {
    currentInfoDialog.close();
  }
  currentInfoDialog = window.open(infourl, "infodialog", "width="+w+",height="+h+",addressbar=no,toolbar=no,menubar=no,resizable=no");
}
