	function findObj(theObj, theDoc)
	{
		var foundObj;
		
		if(!theDoc) theDoc = document;
		
		if(!foundObj && document.getElementById) foundObj = document.getElementById(theObj);
		
		return foundObj;
	}
