Line 50: | Line 50: | ||
}); | }); | ||
}); | }); | ||
− | </script> | + | |
+ | function ShowHide(divId) | ||
+ | { | ||
+ | if(document.getElementById(divId).style.display == 'none') | ||
+ | { | ||
+ | document.getElementById(divId).style.display='block'; | ||
+ | } | ||
+ | else | ||
+ | { | ||
+ | document.getElementById(divId).style.display = 'none'; | ||
+ | } | ||
+ | } | ||
+ | </script> | ||
Revision as of 10:22, 4 October 2016