<!-- Begin

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

// Modifiers:
// BP - Bill Patterson
// MW - Mark Wilson
// 16.02.2009 BP Copied anew from Fleming Institute

var aussie	  = "yes"	// SHOW AUSSIE COPYRIGHT
var w3clogo	  = "no"	// SHOW W3C VALID LOGO

document.write('<span class="footer">');
document.write('<a href="index.html">Homepage</a>');
document.write('&nbsp;|&nbsp;');
document.write(' <a href="about.htm">About Us</a>');
document.write('&nbsp;|&nbsp;');
document.write(' <a href="contact.htm">Contact Us</a>');
document.write('<br>');

if (w3clogo == "yes") {
	document.write('<br><a href="http://www.w3.org/"><img src="picts/w3c.gif" alt="Valid HTML 4.01 Transitional" border="0" vspace="6"></a><br>');
}

document.write('<br>All contents &copy;Copyright 2008 ');

// EDIT THE NEXT LINE
document.write('<a href="index.html">Warburton Information Centre</a><br>');

if (aussie == "yes") {
	document.write('Site Design &copy; 2008 All Rights Reserved <a href="http://ausinterconnect.com.au" target="_blank">Aussie Interconnect</a><br>');
}

document.write('</span>');

//  End -->