function clicker(){var len = document.getElementById("servers").getElementsByTagName("tr");var cl=1;for(i=1;i<len.length;i++){len[i].onmouseover=function(){this.style.background="#e8e8e8"};len[i].onmouseout =function(){this.style.background="#FFF"};len[i].getElementsByTagName("td")[3].onclick=function(){cl=0;} ;len[i].onclick =function(){if(cl){location.assign(this.getElementsByTagName("td")[2].getElementsByTagName("a")[0].href);};cl=1;};var td = len[i].getElementsByTagName("td")[3].style;td.cursor="text";td.borderLeft="1px dotted #aaa"}}
