// containing basic stuff that are written at each page
// based at the original VCDwizard-pages at labdv by Jim
// Copyright(c)2003, Laurens Koehoorn,
//          (c)2001-03 by labDV.com
// Version 1.1 : 08-Aug-03

function writeEditableStart()
{
  document.write('<table bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" width="800">');
  document.write(' <tbody>');
  document.write('  <tr>');
  document.write('   <td bgcolor="#ffffcc" height="29" width="10">&nbsp;</td>');
  document.write('   <td valign="top" width="780">');
  document.write('    <table align="center" border="0" cellpadding="20" cellspacing="0" class="setpage" width="100%">');
  document.write('     <tbody>');
  document.write('      <tr>');
  document.write('       <td valign="top">');
}

function writeEditableEnd()
{
  document.write('       </td>');
  document.write('      </tr>');
  document.write('     </tbody>');
  document.write('    </table>');
  document.write('   </td>');
  document.write('   <td bgcolor="#ffffcc" width="10">&nbsp;</td>');
  document.write('  </tr>');
  document.write(' </tbody>');
  document.write('</table>');
}

function writeFooter()
{
  document.write('<hr />');
  document.write('<table cellspacing="0" cellpadding="0" border="0" width="100%">');
  document.write(' <tbody>');
  document.write('  <tr>');
  document.write('   <td valign="top" style="text-align: left">');
  document.write('    <address>Last updated at 09-Aug-2003, (w)2003 by Laurens Koehoorn</address>');
  document.write('    Powered by <a href="http://www.labdv.com/"><img src="./images/labdv_sm.gif" width="66" height="24" align="absmiddle" alt="labDV" align="top" border="0" /></a>');
  document.write('   </td>');
  document.write('   <td valign="top" style="text-align: right">');
  document.write('    <a href="http://validator.w3.org/check/referer" target="window">');
  document.write('     <img src="./images/valid-xhtml10.gif" alt="Valid XHTML 1.0!" height="31" width="88" border="0" align="right" />');
  document.write('    </a>');
  document.write('   </td>');
  document.write('  </tr>');
  document.write(' </tbody>');
  document.write('</table>');

  writeEditableEnd();
}

