var leftAd = Class.create();
leftAd.prototype = {
	initialize: function(json){
		this._json = json;
	},
	
	showHtml:function(tempStr){
		var temp = tempStr.split("|");
	//	document.write('<div class="leftdiv">');
		for(var i=0;i<temp.length-1;i=i+2){
		    document.write(' <dl class="pickuang">');
			document.write(' <dd class="pickuang_dd01"><img src="/images/web/leftpicbg01.jpg" width="200" height="4"/></dd>');
			document.write(' <dd class="pickuang_dd02"><a target="_blank" href="'+temp[i]+'"><img src="'+temp[i+1]+'" width="183" height="106"/></a></dd>');
		    document.write(' <dd class="pickuang_dd01"><img src="/images/web/leftpicbg02.jpg" width="200" height="4"/></dd>');
			document.write('</dl>');
		}
	 // document.write('</div>');
	}
};

