
function hideall(){
	for (i=1; i<=12; i++) {
		idName = "Text" + i;
		document.getElementById(idName).style.visibility = "hidden";
	}
} 

function show(text){
	idName = "Text" + text;
	document.getElementById(idName).style.visibility = "visible";
}

