function hideUnhideUsingButton(a,b){div=document.getElementById(b);if(div.style.display=="none"){a.value="Close";a.title="Click to Hide Answer";div.style.display="block"}else{a.value="Tell Me More";a.title="Click to See Answer";div.style.display="none"}}function showModalPopup(b){var a=$find(b);alert(a);a!=null&&a.show()}function hideUnhideAllUsingButton(a,e){var b,d,c;if(a.value=="Show All"){b="block";a.value="Close All";a.title="Click to Hide all Answers";c="Click to Hide Answer";d="Close"}else{b="none";d="Tell Me More";c="Click to Show Answer";a.value="Show All";a.title="Click to Show all Answers"}for(i in e){div=document.getElementById(e[i][1]);button=document.getElementById(e[i][0]);button.value=d;button.title=c;div.style.display=b}b=null;d=null;c=null}
