<!--
/**************************************
* writes footnote and copyright stuff *
* at the bottom of each page          *
**************************************/

var TodayDate = new Date();                      // Generate Current Date and Time 
var MyYear = TodayDate.getYear();                // Aquire Current Year
if (MyYear < 2000) { MyYear = 1900 + MyYear; }   // Y2K Fix 

var footer = "";

footer += "<font color='333333'>Centre for Sports Development © " +MyYear+ ".&nbsp;All rights reserved.<br>";
footer += "Site designed by <a href='mailto:webmaster@aeorg.com' title='Visit AfriTech Site'>AfriTech</a></font>";
document.write(footer);

//-->
