function ShowAnswer(id){
Toggle(id);
}

function Toggle(id){
state = document.getElementById(id).style.display;
state = state=='block'?'none':'block';
document.getElementById(id).style.display = state;
}

