var showingOptions = false;

function moreOptions() {
	if(showingOptions) {
		document.getElementById("more_options").style.display = "none";
		document.getElementById("more_options_link").innerHTML = "show options";
	} else {
		document.getElementById("more_options").style.display = "inline";
		document.getElementById("more_options_link").innerHTML = "hide options";
	}
	showingOptions = !showingOptions;
}
