// JavaScript Document

/*--------------------------------------Campaign Disclosures Form Behavior---------------------------------------*/
//Link informstion, accepts value from selected option. Uses value for search query.
function searchLink(a){
	if (a != "no"){
		window.location = "searchPost.asp?pos=" + a;
	}
}

//On page load sets the Dropdown box to display "Choose a ..."
function resetForm(){
	document.getElementById("disSearch").disSelect.selectedIndex = 0;
}

//FF back button (onLoad) bug correction
function unloadForm(){}