//  ========================================================
//  tlab-recommend-buy.js ---- recommend buy class
//  Copyright 2009 TEAM-LAB
//  ========================================================

if ( typeof(TLAB_READ_CSS) == 'undefined' )
{
	TLAB_READ_CSS = true;
	$("head").append('<liNK rel="stylesheet" type="text/css" href="../5css/lab_content.css">');
}

if ( typeof(TLAB_R_BUY) == 'undefined' ) TLAB_R_BUY = function() {};

TLAB_R_BUY.Recommend = function (arg1, arg2) {
	this.divtag = arg1;
	this.itemcd = escape(arg2);
	this.jsurl = "http://reco.dospara.co.jp/cl001/recommend.js?elem=" + this.divtag + "&item=" + this.itemcd + "&ctype=3";
	return this;
}

TLAB_R_BUY.Recommend.prototype.sendRequest = function () {
	var jsElement=document.createElement("script");
	jsElement.type="text/javascript";
	jsElement.src=this.jsurl;
	jsElement.characterSet="UTF-8";
	document.getElementById(this.divtag).appendChild(jsElement);
}
