function show_answer(answer_id){
	myquest = document.getElementById(answer_id).style;
	if ((myquest.display=='none') || (myquest.display=='')){
		myquest.display = 'inline';
		color='red';
	}
	else{
		myquest.display = 'none';
	}
	return false;
}