//function put_footer() will generate the footer and the mail link
function put_footer()
{
	var string1;
	var webmaster_email = "PChappell@gsgis.k12.va.us";
	var mailto_link = "mailto:" + webmaster_email;
	string1 = "Please direct your questions and comments to the ";
	string1 += "<a href="+mailto_link+">" ;
	string1 += "webmaster" + "</a>.<br>";
	string1 += "&copy;" + "2008 Maggie L Walker Governor's School for Government and International Studies." + "<br>\n";
	string1 += "All rights reserved.";
	document.writeln(string1);	                
}
