function findDOM(objectID, withStyle) {
	if (withStyle) {
		if (document.getElementById)
			return document.getElementById(objectID).style;

		if (document.all)
			return document.all[objectID].style;

		return null;
	}
	else {
		if (document.getElementById)
			return document.getElementById(objectID);

		if (document.all)
			return document.all[objectID];

		return null;
	}
}