   var imglist = new Array(
      "http://www.x-gallery.tv/rand_images/rand_1.jpg",
      "http://www.x-gallery.tv/rand_images/rand_2.jpg",
      "http://www.x-gallery.tv/rand_images/rand_3.jpg",
      "http://www.x-gallery.tv/rand_images/rand_4.jpg",
      "http://www.x-gallery.tv/rand_images/rand_5.jpg",
      "http://www.x-gallery.tv/rand_images/rand_6.jpg",
      "http://www.x-gallery.tv/rand_images/rand_7.jpg",
      "http://www.x-gallery.tv/rand_images/rand_8.jpg" 
	);
   var selectnum = Math.floor((Math.random() * 100)) % imglist.length;
   var output = "<img src=" + imglist[selectnum] + " width=91 height=120>";
   document.write(output);
