function submitsearchform(){
	d=document.searchform;
	if(d.search[1].checked){ //Fred Upton's Site
		d.name = "";
		d.action = "http://wwws.house.gov/search97cgi/s97_cgi?UPTON";
		d.Action.value = "FilterSearch";
		d.filter.value = "member_srch_flt.hts";
		d.Collection.value = "members";
		d.ResultTemplate.value = "memberresult.hts";
		d.ViewTemplate.value = "memberview.hts";
		d.SearchPage.value = "/MemberSrch.html";
		//d.SourceQueryText.value = "mi06+vdkvgwkey <substring> &quot;/UPTON/&quot;";
		d.ResultCount.value = "14";
	}
	if(d.search[2].checked){ //Fred's Legislation
		//http://thomas.loc.gov/home/example.html
		d.name = "Legislation";
		d.action="http://thomas.loc.gov/cgi-bin/bdquery";
		d.Dbd108.value="d108";
		d.srch.value="/bss/d108query.html";
		d.TYPE1.value="bimp";
		d.HMEMB.value="UPTON"; //"HMEMB" House Member; "SMEMB" Senate Member; Be sure to change tag in <form>;
		d.Sponfld.value="SPON"; //"SPON" sponsored; "COSP" cosponsored; "SPCO" sponsored and cosponsored;
		d.QueryText.name = "queryc108"; //108th congress
	}
	if(d.search[3].checked){ //Bill Number
		d.name = "Legislation";
		d.action="http://thomas.loc.gov/cgi-bin/query";
		d.QueryText.name = "docidc108"; //108th congress
	}
	if(d.search[4].checked){ // Word or Phrase
		d.name = "Legislation";
		d.action="http://thomas.loc.gov/cgi-bin/query";
		d.QueryText.name = "queryc108"; //108th congress
	}
	if(d.QueryText.value && d.QueryText.value != "Enter Query"){
		d.method="post";
		d.submit();
	}else{
		alert('Please enter a search phrase.');
		d.QueryText.focus();
		return false;
	}
}