function create_clickable_dd(){if(document.getElementById('lastCommList')){var alldd=document.getElementById('lastCommList').getElementsByTagName('dd');var dt=document.getElementById('lastCommList').getElementsByTagName('dt');var clickdd=new Array();var j=0;for(var i=0;i<alldd.length;i++){if(alldd[i].getAttribute("id")){clickdd[j]=alldd[i];var href=dt[j+1].firstChild.getAttribute("href");var commentId=clickdd[j].getAttribute("id");href=href+"#commen"+commentId;clickdd[j].style.cursor="pointer";clickdd[j].setAttribute("name",href);clickdd[j].onmouseover=function(){this.style.color="#DD6900"};clickdd[j].onmouseout=function(){this.style.color="#5E5F68"};clickdd[j].onclick=function(){window.open(this.getAttribute("name"),"_self")};j++;}}}}addLoadEvent(create_clickable_dd);
