diff --git a/index2.html b/index2.html
index 766cc55..307390b 100644
--- a/index2.html
+++ b/index2.html
@@ -420,7 +420,7 @@
function showAllParticipants(data){
-
+ document.getElementById("contract_data_display").style.opacity = 1;
var rows = data;
var html = '
';
@@ -447,9 +447,19 @@
x[i].style.opacity=0;
}
+ document.getElementById("closeMe").addEventListener("click",closeContractParticipantTable);
+
}
-
+ function closeContractParticipantTable(){
+
+ document.getElementById("contract_data_display").style.opacity = 0;
+
+ var x = document.getElementsByClassName("hideMe");
+ for (var i=0;i