// JavaScript Document

function showhide(showhich){
	
	for(i = 1; i <= 6; i++){
		document.getElementById('cfmtext' + i).style.display = 'none';
	}
	
	document.getElementById('cfmtext' + showhich).style.display = 'block';
	
}