1234567891011121314151617181920212223242526 |
- <script type="text/javascript">
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-7691209-1']);
- _gaq.push(['_trackPageview']);
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
- })();
- document.addEventListener('DOMContentLoaded',function() {
- document.getElementById("table-of-contents").onclick = function() {
- var elem = document.getElementById("text-table-of-contents");
- elem.style.display = elem.style.display == "block" ? "none" : "block";
- }
- });
- var url = document.location.href;
- var orgsource = url.substring(0, url.lastIndexOf("."))+".org.html";
- function show_org_source(){
- document.location.href = orgsource;
- }
- </script>
|