//Jumble email address to fool bots
function emailObfuscator(theName, theDomain){
	document.write('<a href="mailto:'+theName+'@'+theDomain+'.com" target="_blank">'+theName+'@'+theDomain+'.com</a>');
}

//Print current year for copyright text
function printCurrentYear(){
	var d = new Date();
	document.write(d.getFullYear());
}
//Text for Right Side Menu
var rightMenu = ''
+'<div id="contentContainer" style="width:200px; float:right; background-color:#ECECEC">'
+'			<H2>Site Sections:</H2>'
+'          <ul>'
+'			  <li><a href="app-manifester.php">Manifester</a></li>'
+'			  <li><a href="hosting.html">Web Hosting</a></li>'
+'            <li><a href="contact.html">Contact</a></li>'
+'        </ul>'
+'</div>';

//Text for footer
var footerText = ''
+'<div id="contentContainer" align="center" style="clear:both;">'
+'	<p class="copyright">Copyright &copy; <script type="text/javascript">printCurrentYear();</script> Scott Mangold, All Rights Reserved.</p>'
+'</div>';

//Function to write text includes
function writeInclude(includeText){
	document.write(includeText);
}