



function DisplayDetail(x){
details = document.getElementById(x);
if(details.style.display == "block"){
details.style.display = "none";}
else {
details.style.display = "block";}}