function bannerHome() {
		if (!document.getElementsByTagName) return false;
		if (!document.getElementById) return false;
		if (!document.getElementById("maincontentcell")) return false;
		
		document.write('<div id="homelink"><a id="home" href="/index.cfm"><em>IADMS Home</em></a>');
	}

bannerHome();

function addLoadEvent(func) {
		var oldonload = window.onload;
		if (typeof window.onload != 'function') {
			window.onload = func;
		} else {
			window.onload = function() {
				oldonload();
				func();
			}
		}
	}
	
	function adjustModule() {
		if (!document.getElementById("maincontenttable")) return false;
		if (document.getElementById("navleft")) return false;
		
		mainContent = document.getElementById("maincontenttable");
		mainContent.className = "module";
		
		var contentMain = document.getElementById("maincontenttable");
		contentMain.parentNode.parentNode.parentNode.parentNode.setAttribute("border","0");
	}
	
	addLoadEvent(adjustModule);