// JavaScript Document

function showAns(ansID) {
	var showAns = document.getElementById(ansID);
	showAns.style.display = "block";
}

function hideAns(ansID) {
	var showAns = document.getElementById(ansID);
	showAns.style.display ="none";
}

