function showForm(form){
	if (form == null) return;
	form.style.display = (form.style.display == "none") ? "block" : "none";
}

