function loadJavaScript( url )
{
   document.write('<script src="', url, '" type="text/javascript"><\/script>');
}

function displayImage( picURL, picWidth, picHeight )
{
  var newWindow;
  if( parseInt(picWidth) > 800 || parseInt(picHeight) > 600 )
  {
    newWindow=window.open(picURL,'newWin','toolbar=no,scrollbars=yes,width='+picWidth+',height='+picHeight)
    newWindow.document.write('<html><head><\/head><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0><img src="'+picURL+'"><\/body><\/html>')
  }
  else
  {
    newWindow=window.open(picURL,'newWin','toolbar=no,width='+picWidth+',height='+picHeight)
    newWindow.document.write('<html><head><\/head><body background="'+picURL+'"><\/body><\/html>')
  }
  newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth,picHeight-newWindow.document.body.clientHeight)
  newWindow.focus()
}

// Paths for various resources.
var dirHtml  = "html/";
var dirImage = "images/";
