/********************************************************************************

	write

********************************************************************************/
Thing.prototype.write = function(meat){
	if (is.ns4) {
		tableOpen = '<table border="0" cellpadding="0" cellspacing="0" width="'+ this.size.x +'"><tr valign="top"><td>';
		tableClose = '</td></tr></table>';
		this.div.document.open();
		this.div.document.write(tableOpen + meat + tableClose);
		this.div.document.close();
	} else {
		this.div.innerHTML = meat;
	}
}
