function getElmById(id) {
   	if(Boolean(document.getElementById)) {
    	return document.getElementById(id);
   	} else if(Boolean(document.all)) {
      	return eval('document.all.'+id);
	}
}
