/////////////////////////////////////////////////////////
//
// Pick an Image at Random
//
// collection of images...
var Pics = new Array();       // array of pic filenames


function choosePic()
  {
  var nDx = Math.floor(Pics.length * Math.random());
  if (nDx > 1 && nDx == Pics.length)
    nDx--;
  return nDx;
  }

//
///// End of File ///////////////////////////////////////

