/*
Generate footer:
  genfooter(last updated);
*/

var myname="info";					/* Who to mail     */
var mydomain="bellydancenewengland"	/* Follows the @   */
var mymessage="Amy Smith";			/* Link shows this */


//begin function genFooter()
function genFooter(lastupdate) {
	hbegin = "<a href='mailto:";
	hend = "'>";
	aend = "</a>";

	document.write("<center>");
	document.write("<span class='smFont'>&copy; 1998-2009. All rights reserved.</span><br>");
	document.write("Web site owned and hosted by: " + hbegin+myname+"@"+mydomain+".com"+hend+mymessage+aend+"<br>");
	document.write("<span class='smFont'>Last updated: " + lastupdate + "</span><br>");
	document.write("<a href='http://www.coriopsis.com/webdesign' target='_blank'><img src='images/coriopsis.jpg' width='234' height='64' alt='Coriopsis Designs' border='0'></a>");
	document.write("</center>");
} //end function genFooter()