function putHeader(uplevel, subbar) {
  var updir = '';
  if (uplevel == "0") updir='';
  if (uplevel == "1") updir='../';
  if (uplevel == "2") updir='../../';
  if (uplevel == "3") updir='../../../';
  
   document.write(' ' +
            '<tr width="960" height="10" style="background-color: #70614e;">' +
            '  <td></td>' +
            '</tr>' + 
            '<tr width="960" style="background-color: #ffffff;">' +
						'	 <td align="center" valign="top">' +
						'    <table border="0" cellpadding="0" cellspacing="0" class="noprint">' +
						'      <tr>' +
            '        <td align="left" valign="top" height="146" width="960" style="background-image: url(' + updir + '00graphics/header.jpg); background-repeat: no-repeat; background-position: center top;"></td>' +
            '      </tr>' +
						'      <tr>' +
            '        <td id="awmAnchor-menu" align="left" valign="top" height="33" width="960"><img src="' + updir + '00graphics/pixelbrown.gif" width="960" height="33"></td>' +
            '      </tr>' +
            '    </table>' +
            '  </td>' + 
            '</tr>' + 
            '<tr width="960" height="500" style="background-color: #ffffff;">' +
            '  <td align="center" valign="top">');
}

function putFooter(uplevel) {
  var updir = '';
  if (uplevel == "0") updir='';
  if (uplevel == "1") updir='../';
  if (uplevel == "2") updir='../../';
  if (uplevel == "3") updir='../../../';

	document.write(' ' +
                '  </td>' +
                '</tr>' +
                '<tr width="960" style="background-color: #70614e;">' +
                '  <td align="left" valign="top" height="33" width="960">' +
				'	<table width="100%"><tr><td width="33%">' +
                '    <div class="smalltext" style="margin-left:20px; margin-top:6px">&copy;2010, Holder Ag Consulting, All Rights Reserved.</div></td>' + 
				'    <td width="33%"><div class="smalltext" style="padding-left:30px; margin-top:6px; text-align:center"> <a href="' + updir + 'sitemap.htm" class="BlackLink">sitemap</a></div></td>' + 
				'    <td width="33%" align="right" ><div class="smalltext" style="margin-right:20px; margin-top:6px;">Site by <a href="http://www.agrenaissance.com" class="BlackLink">AgRenaissance Software LLC</a></div></td></tr></table>' +
                '  </td>' +
                '</tr>'	); 
}


