function ns_set_object_html(arg)
{
	this.css.document.write(arg);
	this.css.document.close();
}

function ns_set_object_bgcolor(arg)
{
	this.css.bgColor = arg;
}

function dom_set_object_html(arg)
{
	this.css.innerHTML = arg;
}

function ie_set_object_html(arg)
{
	this.css.innerHTML = arg;
}

function set_object_bgcolor(arg)
{
	this.css.style.background = arg;
}
