/*
 * $Id: pag12.js 730 2008-05-28 19:03:12Z xleo $
 */

// {{{ function get_obj(name)
function get_obj(name) {

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

}
// }}}














