function writeFooter(){
document.open();
document.writeln('<p align="center">');
document.writeln('	  Westfield Logo &reg; Westfield Sportscars LTD (UK)<br>');
document.writeln('	  Website &copy; 2003 Westfield Sportscars ANZ Pty Ltd<br>');
document.writeln('	  Site by <a href="http://www.swd.com.au" target="_blank">Studio Web Design</a>');
document.writeln('	  </p>');
document.close();
}

function writeLeftNavLinks(){
document.open();
document.writeln('  <table class="body-normal" height="300" width="166" border="0" cellpadding="0">');
document.writeln('  <tr height="20" valign="bottom">');
document.writeln('    <td width="25">&nbsp;</td>');
document.writeln('    <td colspan="2"><a class="left-nav" href="index.php">Home</a></td>');
document.writeln('  </tr>');
document.writeln('  <tr height="20" valign="bottom">');
document.writeln('    <td width="25">&nbsp;</td>');
document.writeln('    <td colspan="2"><a class="left-nav" href="background.php">Background</a></td>');
document.writeln('  </tr>');
document.writeln('  <tr height="20" valign="bottom">');
document.writeln('    <td width="25">&nbsp;</td>');
document.writeln('    <td colspan="2"><a class="left-nav" href="design.php">Design</a></td>');
document.writeln('  </tr>');
document.writeln('  <tr height="20" valign="bottom"> ');
document.writeln('    <td width="25">&nbsp;</td>');
document.writeln('    <td colspan="2"><a class="left-nav" href="construction.php">Construction</td>');
document.writeln('  </tr>');
document.writeln('  <tr height="20" valign="bottom">');
document.writeln('    <td width="25">&nbsp;</td>');
document.writeln('    <td colspan="2"><a class="left-nav" href="driveability.php">Driveability</td>');
document.writeln('  </tr>');
document.writeln('  <tr valign="bottom">');
document.writeln('    <td width="25">&nbsp;</td>');
document.writeln('    <td colspan="2" class="left-nav">&nbsp;</td>');
document.writeln('  </tr>');
document.writeln('  <tr height="20" valign="bottom">');
document.writeln('    <td width="25">&nbsp;</td>');
document.writeln('    <td colspan="2" ><a class="left-nav-head" href="javascript:openDisclaimerWindow()">Disclaimer</a></td>');
document.writeln('  </tr>');
document.writeln('  </table');
document.close();
}

function writeTopNavLinks(){
document.open();
document.writeln('<p align="center" class="top-nav">');
document.writeln('<a href="index.php" class="top-nav">Home</a> ');
document.writeln('| <a href="contact.php" class="top-nav">Contact</a> ');
document.writeln('| <a href="pricelist.php" class="top-nav">Pricelist</a>');
document.writeln('| <a href="faq.php" class="top-nav">FAQ</a> ');
document.close();
}

function writePageHeading(text){
document.open();
document.writeln('<p class="page-head">' + text + '</p>');
//document.writeln('<hr size=1>');
document.close();
}
function writeShowroomHeading(text,overviewURL,designURL,perfURL){
document.open();
document.writeln('<p class="page-head">' + text + '</p>');
document.writeln('<p><a href="' + overviewURL + '" class="left-nav">Overview</a> | ');
document.writeln('<a href="' + designURL + '" class="left-nav">Design Specification</a> | ');
document.writeln('<a href="' + perfURL + '" class="left-nav">Performance Specification</a></p>');
document.writeln('<hr size=1>');
document.close();
}

function openDisclaimerWindow() {
  window.open('disclaimer.html','','width=420,height=380');
}


