  function ImageDisplay(src) { 
 
    var x = window.open("",src,
       "width=502,height=255,scrollbars=no,resizable=no,menus=no,directories=no,links=no");

    var x_html = "<html><head><title>ImageDisplay: "+src+"</title>";
    x_html += "<body topmargin='0' leftmargin='0' rightmargin='0' bottommargin='0' bgcolor='#ffffff'>";
    x_html += "<img src='"+src+".jpg'></body></html>";

    x.document.write(x_html);
    x.document.close();
    x.focus();
  }

  function loadTables() {
    var el_id = "dataTables";
    var el = document.getElementById(el_id);
    LoadContent(el_id,"/projects/Piers/SIO/SeaKeepers/tables.php");
    el.style.display = "";
    el.style.innerHTML = "Loading...";
  }
  window.onload = loadTables;
