// JavaScript Document

function StringBuffer()
{
	this._strings_ = new Array;
	
}

StringBuffer.prototype.append = function (str)
{
	this._strings_.push(str);
}

StringBuffer.prototype.toString = function(separater)
{
	return this._strings_.join(separater);
}