<!-- Begin

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

var pageheight	  = "0"	// SPACING ABOVE COPYRIGHT

document.write('<img src="design_elements/spacer.gif" height="'+pageheight+'" width="5"><br>');

// START FOOTER LINKS

document.write('<a href="index.html">Home</a>');

document.write('&nbsp;|&nbsp;');

document.write(' <a href="owners.html">Owners</a>');

document.write('&nbsp;|&nbsp;');

document.write(' <a href="contact.html">Contact Us</a>');

document.write('<br><br>All contents &copy; copyright 2005-<span id="copyright">...</span> ');

// EDIT THE NEXT LINE

document.write('<a href="http://thenautiluscondominiums.com">The Nautilus Condominiums of Holmes Beach</a><br>');

document.write('<br>');

/* This script will update the current year for the copyright notice. */

function copyDate() {
  var cpyrt = document.getElementById("copyright")
  if (cpyrt) {
     cpyrt.firstChild.nodeValue = (new Date()).getFullYear();
  }
}

window.onload = copyDate;

//  End -->