// JavaScript Document

   // 画像・URLリストを配列で作る
   var imglist = [
      [ "flash", "./cont/banner/e-setsubi-flash.swf", "e-設備PRO e-設備NET"],
	  [ "img", "./cont/banner/cadewa2011.gif", "CADEWA Real2011", "http://www.setsubi-it.jp/news/topics/topics_1104fujitsu.html" ] ,
	  [ "flash", "./cont/banner/vec_bana.swf", "VectorMaster"],
	  [ "flash", "./cont/banner/bn_1012snc.swf", "ANDES水匠"],
	  [ "flash", "./cont/banner/ids2010a.swf", "石田データサービス"],
      [ "flash", "./cont/banner/hiroimusha02.swf", "拾い武者"]
   ];

   // ランダムに1つ選んで表示する関数
   function RandomImageLink() {
      // どれか１つ選ぶ
      var selectnum = Math.floor(Math.random() * imglist.length);
      // 画像とリンクを生成
      var output = '<a href="' + imglist[selectnum][3] + '">';
	  if (imglist[selectnum][0]=="flash")
	  {
	  	output +=  '<embed src="'+imglist[selectnum][1]+'" width="250" height="250">';
	  }
      else
	  {
	  	output += '<img src="' + imglist[selectnum][1] + '"';
		output += ' alt="' + imglist[selectnum][2] + '" border="0"' + '>' + '</a>';
	  }

      // 生成したHTMLを出力
      document.write(output);
   }

