function showdiv (id) {
	if (document.getElementById(id).style.display == "none") {
		show = "";
		document.getElementById(id).style.display = show;
	}
}
function hidediv(id) {
	if (document.getElementById(id).style.display == "") {
		show = "none";
		document.getElementById(id).style.display = show;
	}
}