/**
 * ブロックにリンクを設定する
 */
function recoClickableBlock (url, blank, target) {
 this.url = url;
 this.blank = blank;
 this.target = (target ? target : window.self);
 win = (this.blank ? window.open() : this.target);
 win.location.href = this.url;
}