<!--
   var imglist = [
      [ "../images/share/flash_img02.jpg", "", "../index.html" ] ,
	  [ "../images/share/flash_img03.jpg", "", "../index.html" ] ,
	  [ "../images/share/flash_img04.jpg", "", "../index.html" ] ,
	  [ "../images/share/flash_img05.jpg", "", "../index.html" ] ,
	  [ "../images/share/flash_img06.jpg", "", "../index.html" ] ,
   ];
   function RandomImageLink() {
      var selectnum = Math.floor(Math.random() * imglist.length);
      var output = 
         '<a href="' + imglist[selectnum][2] + '">' +
         '<img src="' + imglist[selectnum][0] + '"' +
         ' alt="' + imglist[selectnum][1] + '"><br>' +
         imglist[selectnum][1] + '</a>';
      document.write(output);
   }
// -->