function showdiv(div) {
	var d=document.getElementById(div);
	d.style.visibility=(d.style.visibility=="hidden")?"visible":"hidden";
}

