
// opening and closing answers divs

function blocking(questionN){

if (document.getElementById(questionN).style.display=="block"){
	document.getElementById(questionN).style.display="none";
} else {
	document.getElementById(questionN).style.display="block";
	}
}

function display(aDiv)
{
	document.getElementById(aDiv).style.display = "block";
}






