function tsGetElementById(id) {
	if (document.layers) {
		return eval('document.' + id);
   	} else if (navigator.userAgent.indexOf("Opera") != -1) {
   		return eval("document.all."+id);
   	} else {
   		return document.getElementById(id);
   	}
}