//This script will determine which topic on the FAQ page to jump to, and will go to that location
//  	  Note:  if you are calling from a different webpage, then you must include FAQ.SHTML in the Value property of the options
//			ex.  option value="faq.shtml#volunteer"
//Parameters:
//  1.  form:  INPUT;  Use - form reference (you can use "this.form") 

function FAQTopic(form)
{
	newtopic = form.guidelinks.options[form.guidelinks.selectedIndex].value;
//	alert (newtopic);
	location = newtopic;
}
