function StringBuffer(){
	this.__strings = new Array();
}

StringBuffer.prototype.append = function(str){
	this.__strings.push(str);
}

StringBuffer.prototype.toString = function(){
	return this.__strings.join("");
}

