/* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
 * eatc.de: Application-Wide JavaScript Library
 *
 * Copyright (c) 2005 - 2006 Erik Abele.
 * All rights reserved.
 * -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- */

/* getObj:
	Gets object with given ID. */

function getObj(id) {
	if (document.all) { return document.all[id]; }
	else { return document.getElementById(id); }
}
