function displayBasicFooter()
    {

document.open();
document.writeln('<table class="footer" width=100% cellpadding="0" cellspacing="0" align="center">');

if ( document.title != 'Welcome'){
  document.write('          <tr>');
  document.write('           <td class="body-normal" valign="middle" height="40" align="left">');
  document.write('            <p>Please feel free to <a href="./contactus.html">contact us</a> with any inquiry.</p>');
  document.write('           </td>');
  document.write('           </tr>');
}

document.write('          <tr>');
document.write('           <td valign="middle" height="40">');
document.write('            <hr>');
document.write('           </td>');
document.write('           </tr>');
document.write('           <tr>');
document.write('           <td class="body-small" align="center"> ');

document.write('<p><div class="body-normal"><font color="#3300CC"><b><i>Secure Online Payment</i></b></font></div>');
document.write(' <img src="./img/visacard.gif" width="58" height="38">');
document.write('<img src="img/mastercard.gif" width="58" height="38">');
document.write('<img src="img/bankcard.gif" width="58" height="38">');
document.write('<img src="img/amex.gif" width="58" height="38"><br>');
document.write('Bank Cheque and Invoice (14 day Accounts) <br>also accepted.</p>');
document.write('<p>You may print our <a href="./orderform.doc">order form</a> and fax to us if you prefer.</p>');

document.write('            </td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('          <td class="body-small" align="center"><br>');
document.write('            <p class="body-xsmall">Website copyright © 2001-2003<br>');
document.write('             Animal Care Equipment & Services Pty Ltd<br>Site by <a href="http://www.swd.com.au/"  target="_blank">Studio Web Design</a></p>');
document.write('          </td>');
document.writeln('          </tr>');

document.writeln('        </table>');
document.close();

}

function writeBodyStart(){
  document.open()
  document.writeln('<BODY leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="./img/leftback1.jpg">');
  document.writeln('<TABLE border=0 class="body-normal" bgcolor="white" cellpadding=30 cellspacing=0 width=100%>');
  document.writeln('  <tr>');
  //document.writeln('    <td width="20%">');
  document.writeln('    <td width="20%" background="./img/leftback1.jpg">');
  document.close();
}

function writeBodyRightColumn(){
  document.open();
  document.writeln('    </td>');
  document.writeln('	<td width="20%">');
  // document.writeln('	<td width="20%" background="./img/leftback1.jpg">');
  document.close;
}

function writeBodyColumnStart(){
  document.open();
  document.writeln('</td>');
  document.writeln('    <td width="60%" bgcolor=white>');
  document.close();
}

function writeLeftNavLink(linkText,linkURL){

  document.writeln('<tr><td align="left"><font size=-1><a href="' + linkURL + '" target="body">' + linkText + '</a></td></tr>');
  document.writeln('<tr height="1"><td height="1" bgcolor="#333333"><img src="./img/clearpixel.gif" height="1"></td></tr>');

}
function writeLeftNavLinksTable(){
  document.open();
  document.writeln('<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 height="100%">');
  writeLeftNavLink('Contact Us','./contactus.html');
  writeLeftNavLink('Guestbook','./guestbook.html');
  writeLeftNavLink('Information Request','./inforequest.html');
  writeLeftNavLink('Newsletter','./newsletter.html');
  writeLeftNavLink('Privacy Statement','./privacy.html');
  document.writeln(' </TABLE>');
  document.close();
}



