//  ========================================================
//  tlab-beacon-view.js ---- recommend beacon view class
//  Copyright 2009 TEAM-LAB
//  ========================================================

if ( typeof(TLAB_B_VIEW) == 'undefined' ) TLAB_B_VIEW = function() {};

TLAB_B_VIEW.Beacon = function (arg1, arg2, arg3) {
	this.divtag = arg1;
	this.itemcd = escape(arg2);
  if (arg3 == "1") {
		this.imgurl = "https://reco.dospara.co.jp/cl000/beacon.gif?item=" +this.itemcd;
	} else {
		this.imgurl = "http://reco.dospara.co.jp/cl000/beacon.gif?item=" +this.itemcd;
  }
	return this;
}

TLAB_B_VIEW.Beacon.prototype.sendRequest = function () {
	document.getElementById(this.divtag).innerHTML = "<img src='" + this.imgurl + "'>";
}
