function ShowAnswer( n ){
	for( i=1; i<40; i++ ){
		var obj = document.getElementById('answ' + i);
		if( obj ){
			obj.style.display = (i == n ? "block" : "none");
		}
	}
}
