/*
	Functions for working with the Document Object Model
*/

// getElement allows you to reference DOM elements by id, independent of browser
function getElement(element) {
	if (document.all) {
		return document.all[element];
	} else if (document.getElementById) {
		return document.getElementById(element);
	} else {
		return null;
	}
}	
