var imageHeight=240  //local
var title="";

function showImage(path, nr) {
  document.write('<a href="', path, 'default.html#', nr, '">');
  document.write('<img src="', path, thumb[nr], '" HEIGHT=', imageHeight, ' border=1 > ');
  document.write('</a>');
}

function imageLink(path, nr1, nr2, nr3) {
  document.write('<div align="center">');
  if (nr1>=0) showImage(path, nr1);
  if (nr2>=0) showImage(path, nr2);
  if (nr3>=0) showImage(path, nr3);
  document.write('<a href="', path, 'default.html">');
  document.write('<br>', title, '</a> - ', imageCount, ' photos<br>');
  document.write('<br>');
  document.write('</div>');
}

//not used
//borrow form http://www.phpied.com/javascript-include/
function include(script_filename) {
    document.write('<' + 'script');
    document.write(' language="javascript"');
    document.write(' type="text/javascript"');
    document.write(' src="' + script_filename + '">');
    document.write('</' + 'script' + '>');
}

function addImages(path, nr1, nr2, nr3) {
  include(path+'local-images.js');
  imageLink(path, nr1, nr2, nr3);
}
//end not used