<!-- Begin

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

var protected	  = "yes"	// SHOW PHP LOGIN COPYRIGHT
var pageheight	  = "5"		// SPACING ABOVE COPYRIGHT

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

// START FOOTER LINKS

document.write(' <a href="terms.html">Terms of Use</a>');

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

document.write(' <a href="privacy.html">Privacy Policy</a>');

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

document.write(' <a href="login.php">Owners</a>');

document.write('<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>');

   if (protected == "yes") {
document.write('Powered by <a href="http://php-login-script.com">PHP Login Script v2.3</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 -->