(function(){
  var Taperas = function(){};
	Taperas.prototype = {
		get_h_showcase_html : function()
		{
			var taperas_url = ( taperas_partner_url ? taperas_partner_url.replace( /\/$/, "" ) : 'http://www.taperas.com' );
			var frame_height = 130;
			var frame_width = 960;
			var html = '<iframe src="__FRAME_SRC__" width="__FRAME_WIDTH__" height="__FRAME_HEIGHT__" frameborder="0" allowtransparency="true" hspace="0" marginheight="0" marginwidth="0" vspace="0" scrolling="no"></iframe>';
			var keywords = taperas_h_showcase_keywords || "";
			var frame_src = taperas_url + "/widgets/h_showcase.html?q=" + keywords;
			html = html.
				replace( "__FRAME_SRC__", frame_src ).
				replace( "__FRAME_HEIGHT__", frame_height ).
				replace( "__FRAME_WIDTH__", frame_width );
			return html;
		},
		h_showcase : function()
		{
			document.write( this.get_h_showcase_html() );
		}
	};
	var t = new Taperas;
	t.h_showcase();
})();

