//  ========================================================
//  tlab-beacon-search-result.js ---- search beacon search word class
//  Copyright 2009 TEAM-LAB
//  ========================================================

if ( typeof(TLAB_B_SR) == 'undefined' ) TLAB_B_SR = function() {};

TLAB_B_SR.Beacon = function (arg1, arg2, arg3) {
	this.divtag = arg1;
	this.search_word = encodeURI(arg2);
	this.result_cnt = arg3;
	this.imgurl = "http://reco.dospara.co.jp/cl000/srbeacon.gif?search_word=" +this.search_word+ "&result_cnt=" +this.result_cnt;
	return this;
}

TLAB_B_SR.Beacon.prototype.sendRequest = function () {
	if (!this.search_word.match(/^\d{5,6}$/)) {
		document.getElementById(this.divtag).innerHTML = "<img src='" + this.imgurl + "'>";
	}
}
