function getObj(name)
{
	if (document.getElementById) {
		this.obj = document.getElementById(name);
		if (this.obj)
			this.style = document.getElementById(name).style;
	} else if (document.all) {
		this.obj = document.all[name];
		if (this.obj)
			this.style = document.all[name].style;
	} else if (document.layers) {
		if (document.layers[name]) {
			this.obj = document.layers[name];
			if (this.obj)
				this.style = document.layers[name];
		}
	}
}
