//This is the function that writes out the footer.
//It is called remotely from many different html pages.
//To change the footer on each and every page, you only 
//have to change it here.
//Written by: Charles Gustafson, MetaClast Designs
//http://www.metaclast.com , webmaster@metaclast.com

	RightNow=new Date();
	var TheYear = RightNow.getYear()					// Define the Year
	var mpo = RightNow.getMonth();					// Define the Month
	var mpo1 = mpo + 1									// Define the correct month
	
	function printVirtualFooter() {					// Define Function 
		if (TheYear >= 100 && TheYear <= 1999)
						{TheYear=TheYear + 1900}
						else
						{TheYear=TheYear}


// Begin Footer Script
document.write("<tr>");
document.write("<td align='center' valign='top'><br>");
	document.write("<p class='footer'>Copyright &copy; 2005 Roof Dancers<br>");
	document.write("Site created by <a href='mailto:sg@sgwebdesignstudio.com'>SG Web Design Studio</a><br>");
	document.write("Send questions and comments to <a href='mailto:kathryn@roofdancers.com'>Kathryn</a><br>");
	document.write("Last updated:  " + mpo1 +"\/" + RightNow.getDate() + "\/" + TheYear + "<br><br></p>"); // Write month, day, year
document.write("</td>");
document.write("</tr>");
	
  }
// End Footer Script