function getIroiroTitleName(){
  if (screen.width <= 800) { 
    document.write('■色リン');
  }else{
    document.write('■葱ブロ内いろいろ色別ランダムリンク[<a href=\"http://negi.livedoor.biz/archives/51207004.html\">？</a>]');
  }
};

        var call_func = { url : [
          [1,'image_black'],
          [2,'image_blue'],
          [3,'image_green'],
          [4,'image_pink'],
          [5,'image_red'],
          [6,'image_white'],
          [7,'image_yellow']
          ],

        // 順番のシャッフル
        shuffle : function() {
          for (i = this.url.length; i > 0; --i) {
            tmp = this.url[p = Math.floor(Math.random()*i)] ;
            this.url[p] = this.url[i-1] ;
            this.url[i-1] = tmp ;
          }
        },

        p : 0, // 表示画像のポインタ

        // 画像表示
        put : function() {
          w = screen.width;
          var call_no=this.url[this.p++][0];
          if(call_no == 1) { 
            document.write('<td width="30" align="center"><b>黒<\/b><\/td><td>');
            if (w <= 800) { 
              images_black.put();
            } else { 
              images_black.put(); images_black.put(); images_black.put();
            }
            document.write('<\/td>');
          } else if(call_no == 2) { 
            document.write('<td width="30" align="center"><b>青<\/b><\/td><td>');
            if (w <= 800) { 
              images_blue.put();
            } else { 
              images_blue.put(); images_blue.put(); images_blue.put();
            }
            document.write('<\/td>');
          } else if(call_no == 3) { 
            document.write('<td width="30" align="center"><b>緑<\/b><\/td><td>');
            if (w <= 800) { 
              images_green.put();
            } else { 
              images_green.put(); images_green.put(); images_green.put();
            }
            document.write('<\/td>');
          } else if(call_no == 4) { 
            document.write('<td width="30" align="center"><b>桃<\/b><\/td><td>');
            if (w <= 800) { 
              images_pink.put();
            } else { 
              images_pink.put(); images_pink.put(); images_pink.put();
            }
            document.write('<\/td>');
          } else if(call_no == 5) { 
            document.write('<td width="30" align="center"><b>赤<\/b><\/td><td>');
            if (w <= 800) { 
              images_red.put();
            } else { 
              images_red.put(); images_red.put(); images_red.put();
            }
            document.write('<\/td>');
          } else if(call_no == 6) { 
            document.write('<td width="30" align="center"><b>白<\/b><\/td><td>');
            if (w <= 800) { 
              images_white.put();
            } else { 
              images_white.put(); images_white.put(); images_white.put();
            }
            document.write('<\/td>');
          } else if(call_no == 7) { 
            document.write('<td width="30" align="center"><b>黄<\/b><\/td><td>');
            if (w <= 800) { 
              images_yellow.put();
            } else { 
              images_yellow.put(); images_yellow.put(); images_yellow.put();
            }
            document.write('<\/td>');
          }

          if (this.p >= this.url.length) this.p = 0 ;
        }
      } ;

      call_func.shuffle() ;

