//global javascript funtions
function clearSearch(obj){
	obj.value='';
}

<!-- nospam script
var user;
var domain;
var suffix;

function nospam(user, domain, suffix){
	document.write('<a href="' + 'mailto:' + user + '@' + domain + '.' + suffix + '">' + user + '@' + domain + '.' + suffix + '</a>');
}

/* header html */
var header = '<div class="header-brand"><a href="/"><img src="http://www.blueprintgrowth.com/images/brand-logo.gif" alt="Blueprint Growth" width="228" height="102" /></a></div>';
	header += '<div class="header-nav">';
	//header += '<script type="text/javascript">';
	//header += 'AC_FL_RunContent( \'codebase\',\'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0\',\'width\',\'692\',\'height\',\'102\',\'title\',\'navigation\',\'src\',\'http://www.blueprintgrowth.com/nav/bp_topnav\',\'quality\',\'high\',\'pluginspage\',\'http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\',\'movie\',\'http://www.blueprintgrowth.com/nav/bp_topnav\' ); //end AC code';
	//header += '</script>';
	//header += '<noscript>';
	header += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="692" height="102" title="navigation">';
	header += '<param name="movie" value="http://www.blueprintgrowth.com/nav/bp_topnav.swf" />';
	header += '<param name="quality" value="high" />';
	header += '<embed src="http://www.blueprintgrowth.com/nav/bp_topnav.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="692" height="102"></embed>';
	header += '</object>';
	//header += '</noscript>';
	header += '</div>';
	header += '<div class="header-newsletter"></div>';
		
/* footer html */
var footer = '<ul id="footerLink">';
	footer += '<li class="first">&copy;2009 Blueprint Growth Institute, Inc.</li>';
	footer += '<li><a href="http://www.blueprintgrowth.com/contact.html">Contact</a></li>';
	footer += '<li><a href="http://www.blueprintgrowth.com/sitemap.html">Sitemap</a></li>';
	footer += '<li><a href="http://www.blueprintgrowth.com/privacy.html">Privacy Policy</a></li>';
	footer += '<li><a href="http://www.blueprintgrowth.com/terms.html">Terms of Use</a></li>';
	footer += '</ul>';
	footer += '<script type="text/javascript">';
	footer += 'var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");';
	footer += 'document.write(unescape("%3Cscript src=\'" + gaJsHost + "google-analytics.com/ga.js\' type=\'text/javascript\'%3E%3C/script%3E"));';
	footer += '</script>';
	footer += '<script type="text/javascript">';
	footer += 'var pageTracker = _gat._getTracker("UA-4125277-1");';
	footer += 'pageTracker._initData();';
	footer += 'pageTracker._trackPageview();';
	footer += '</script>';

function fnBuildHeaderAndFooter() {
	var arrPartsToLoad = new Array(header,footer);
	var arrPartsToLoadDivs = new Array("header","footer");
	for(var i=0;i<arrPartsToLoad.length;i++) {
		if (document.getElementById(arrPartsToLoadDivs[i])!=undefined) {
			document.getElementById(arrPartsToLoadDivs[i]).innerHTML = arrPartsToLoad[i];
		}
	}
}
//-->