function newWindow(pic,thetitle,width,height) {
  picWindow = window.open("", thetitle, 'toolbar=no,location=no,scrollbars=auto,noresize,width='+width+',height='+height);
  with (picWindow.document) {
    write('<html><head><title>');
    write(thetitle);
    write('</title></head><body bgcolor="black" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><img src="');
    write(pic);
    write('"></body></html>');
    close();
  }
}

function helpWindow(thetitle, location, width, height) {
  window.open("", thetitle, 'toolbar=no,location='+location+',scrollbars=auto,noresize,width='+width+',height='+height);
}

function addSidebar(that) {
  if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) {
    window.sidebar.addPanel(that.form.title.value,that.form.url.value,"");
  }
} 

