// Random image v1.0 / 28-03-2003
// Writes a random image from a numbered list of images

imagecount  = 2;
imagepath   = "/wtr/images/";
imageprefix = "anim_";
imageext    = ".gif";
imagewidth  = "221";
imageheight = "51";
imagealt    = "";
imageborder = "0";

function get_rnd(seed)
   {
   rndNum = Math.round(Math.random()*seed);
   return rndNum;
   }

document.write("<img src='" + imagepath + imageprefix + get_rnd(imagecount) + imageext + "' width='" + imagewidth + "' height='" + imageheight + "' border='" + imageborder + "' alt='" + imagealt + "'>")