|
|
| Line 1: |
Line 1: |
| var _gaq = _gaq || [];
| |
| _gaq.push(['_setAccount', 'UA-19605545-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);
| |
| })();
| |
|
| |
|
| |
| onload=function(){
| |
| if (!wgUserName) {
| |
| showLogin('needlogin');
| |
| showLogin('loggedin');
| |
| }
| |
|
| |
| function showLogin(lclass) {
| |
| links = document.getElementsByClassName(lclass);
| |
| for (var i = 0; (element = links[i]) != null; i++) {
| |
| element.style.display = 'none';
| |
| }
| |
| links = document.getElementsByClassName("do"+lclass);
| |
| for (var i = 0; (element = links[i]) != null; i++) {
| |
| element.style.display = 'inline';
| |
| }
| |
| }
| |
| }
| |