<!--
	
	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>International Wood Products Association</em></a></div>');
		}
	
	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("maincontentcell")) return false;
		if (document.getElementById("maincontentsubcell")) return false;
		if (document.getElementById("content")) return false;
		
		mainContent = document.getElementById("maincontentcell");
		mainContent.className = "module";
		
	}

	addLoadEvent(adjustModule);	

-->