//This function inserts a link to the Section 508 compliance checker at 
//http://bobby.watchfire.com/ with the location of the current page in the
//URL so that it will check the current page
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>")
}

//Pops up a new browser window with the specified parameters (used especially for loops)
function open_popup(url, window_name, width, height)
{
	var str_url = url
	var str_window_name = window_name
	var int_width = width
	var int_height = height

	var obj_popup_window = window.open (str_url, window_name, "scrollbars=yes,resizable=yes,width=100,height=100")
	obj_popup_window.resizeTo(int_width+18, int_height)
	obj_popup_window.focus()
}