// JavaScript Document

function byname_onchange() {
	document.search_form.state.options[0].selected = true;
	document.search_form.region.options[0].selected = true;
	document.search_form.pclass.options[0].selected = true;
}
function clear_state() {
	document.search_form.state.options[0].selected = true; 
}
function clear_region() {
	document.search_form.region.options[0].selected = true;
}
function clear_byname() {
	document.search_form.byname.value = "";
}


// Google Analytics Code

var _gaq = _gaq || [];
	  _gaq.push(['_setAccount', 'UA-13077554-25']);
	  _gaq.push(['_trackPageview']);
	
	  (function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
	  })();