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">' +
						'	 <td colspan="2" align="center" valign="top">' +
						'    <table border="0" cellpadding="0" cellspacing="0" class="noprint">' +
						'      <tr style="background-color: #339966;">' +
            '        <td align="center" valign="center" height="150" width="370" style="background-image: url(' + updir + '00Images/logo_115x350.jpg); background-repeat: no-repeat; background-position: center center;"></td>' +
            '        <td align="center" valign="center" height="150" width="590" style="color:#ffffff;">' +
            '            <div style="font-size:46px"><i>Golf Carts and More !</i></div><br>' +
            '            <div style="font-size:16px"><i>We are a local golf cart sales and service center. Our focus is customer satisfaction.</i></div>' +
            '        </td>' +
            '      </tr>' +
            '    </table>' +
            '  </td>' + 
            '</tr>' + 
            '<tr width="960" style="background-color: #ffffff;">' +
            '  <td id="awmAnchor-menu" align="left" valign="top" width="160"><img src="' + updir + '00Images/blank.gif" width="160" height="500"></td>' +
            '  <td align="left" valign="top" width="800">');
}

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: #339966;">' +
                '  <td colspan="2" align="left" valign="top" height="33" width="960">' +
                '    <div class="smalltext" style="color:#ffffff; margin-left:50px; margin-top:8px">Copyright 2009, Southeastern Carts, All Rights Reserved.' +
                '  </td>' +
                '</tr>'	); 
}

