var lastshow ="";
function show(k) {
//	alert(lastshow + ' -- ' + k);
	if (lastshow) {
//		document.getElementById(lastshow).visibility = "hide";
		document.getElementById(lastshow).style.display = "none";
	}
//	document.getElementById(k).visibility = "show";
	document.getElementById(k).style.display = "block";
	lastshow = k;
}

function hide(k) {
//	alert(lastshow + ' -- ' + k);
	if (lastshow) {
//		document.getElementById(lastshow).visibility = "hide";
		document.getElementById(lastshow).style.display = "show";
	}
//	document.getElementById(k).visibility = "show";
	document.getElementById(k).style.display = "none";
	lastshow = k;
}
