function query_object_left()
{
	var nr;

	nr = parseInt(this.css.style.left, 10);
	return nr;
}

function query_object_top()
{
	var nr;

	nr = parseInt(this.css.style.top, 10);
	return nr;
}

function query_object_height()
{
	var nr;

	nr = parseInt(this.css.style.height, 10);
	return nr;
}

function query_object_width()
{
	var nr;

	nr = parseInt(this.css.style.width, 10);
	return nr;
}

function set_object_height(arg)
{
	this.css.style.height= arg + "px";
}

function set_object_width(arg)
{
	this.css.style.width = arg + "px";
}

function ns_query_object_left()
{
	this.css.style.left;
}

function ns_query_object_top()
{
	this.css.style.top;
}

function ns_query_object_height()
{
	return this.css.clip.height;
}

function ns_query_object_width()
{
	return this.css.clip.width;
}

function ns_set_object_height(arg)
{
	this.css.clip.height = arg;
}

function ns_set_object_width(arg)
{
	this.css.clip.width = arg;
}

function ie_query_object_height()
{
	return this.css.clientWidth;
}

function ie_query_object_width()
{
	return this.css.clientHeight;
}

function ie_set_object_height(arg)
{
	//this.css.clientHeight = arg + "px";
}

function ie_set_object_width(arg)
{
	//this.css.clientWidth = arg + "px";
}

