
//This function prints out a link with the title "Section 508" that links to
//the Section 508 validator at http://bobby.watchfire.com with the current
//page as the path to validate.  It was put in a function because XHTML won't
//allow the <a> tag within a <script> tag, and so it wasn't validating as XHTML
function section508()
{
	document.write("<a href='http://bobby.watchfire.com/bobby/bobbyServlet?URL=")
	document.write(escape(document.URL))
	document.write("&amp;output=Submit&amp;gl=sec508&amp;test=")
	document.write("'>Section 508</a>")
}
