<!--



/**************************************

* 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 += "&nbsp; <font color='#ffffff'>Site design by <a href='http://www.cnodesigns.co.uk' target='_blank' class='unline'><font color='#ffcc00'>CNO Designs Ltd</font></a><br><br>";

footer += "&nbsp; Last Site Update: 25-Mar-2009<br>";

footer += "&nbsp; Support for Africa is a registered charity No. 1085282<br>";

footer += "&nbsp; Contact the <a href='mailto:webmaster@supportforafrica.org' class='unline'><font color='#ffffcc'>webmaster</font></a> with queries or comments about this web site.<br>";

footer += "&nbsp; Copyright: Support for Africa &copy; 2000-" +MyYear+ "</font>";



document.write(footer);



//-->




