/* FUNCTION -------------------------------------------------------------------
Name:					getELM
Description:	Abstracts the getElementByID functionality so we can cater for
							other browsers
Receives:			The node id of the element
Coded By:			Greg Saunderson
Date:					2005-08-26
---------------------------------------------------------------------------- */
function getELM(aID) {
	return (document.getElementById) ? document.getElementById(aID) : document.all[aID];
}