<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

function date_ddmmmyyyy(date)
{
  var d = date.getDate();
  var m = date.getMonth() + 1;
  var y = date.getYear();
  var mmm =
    ( 1==m)?'Jan':( 2==m)?'Feb':(3==m)?'Mar':
    ( 4==m)?'Apr':( 5==m)?'May':(6==m)?'Jun':
    ( 7==m)?'Jul':( 8==m)?'Aug':(9==m)?'Sep':
    (10==m)?'Oct':(11==m)?'Nov':'Dec';
  return "" +
    (d<10?"0"+d:d) + " " + mmm + " " + (y<1000?1900+y:y);
}
// GET LAST MODIFIED DATE OF THIS WEB PAGE
function date_lastmod()
{
  var lmd = document.lastModified;
  var s   = "Unknown";
  var d1;
  // check if valid date
  if(0 != (d1=Date.parse(lmd)))
  { s = "" + date_ddmmmyyyy(new Date(d1)); }
  return s;
}

// FOOTER SPACER
document.write('<img src="img/spacer.gif" border="0" width="1" height="30"><br>');

document.write('<a href="http://www.circuits.dk/index.html"">Homepage</a>');
document.write('&nbsp;|&nbsp;');

document.write(' <a href="http://www.circuits.dk/partners.htm">Partners</a>');
document.write('&nbsp;|&nbsp;');

document.write(' <a href="http://www.circuits.dk/disclaimer.htm">Terms of use</a>');
document.write('&nbsp;|&nbsp;');

document.write(' <a href="http://www.circuits.dk/privacy.htm">Privacy Policy</a>');
document.write('&nbsp;|&nbsp;');

document.write(' <a href="http://www.circuits.dk/about.htm">About</a>');
document.write('&nbsp;|&nbsp;');

document.write(' <a href="http://www.circuits.dk/contact/contact.php">Contact Us</a>');
document.write('<div><br></div>');

document.write('<a href="http://validator.w3.org/check?uri=referer"><img style="border:0;width:88px;height:31px" src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01 Transitional" height="31" width="88"></a>');
document.write('&nbsp;&nbsp;&nbsp;&nbsp;');
document.write('<a href="http://jigsaw.w3.org/css-validator/check/referer"><img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>');
document.write('&nbsp;&nbsp;&nbsp;&nbsp;');
document.write('<a href="https://www.google.com/adplanner/site_profile?s=circuits.dk&b=1"><img src="http://www.gstatic.com/ads/branding/adplanner/dcap88_31.gif" border=none width=88 height=31 title="Find my site on DoubleClick Ad Planner"></a><br>');
document.write('<br><br>Last updated ');
document.write( date_lastmod() );
document.write(' &copy;Copyright ');

document.write('<a href="http://www.circuits.dk/index.html"> CIRCUITS.DK</a>');
document.write('  -All about electronic circuits and design');





//  End -->
