
Code:
- <script type="text/javascript">
- <!--
- /*Mini Profile on Right Side of Forum by Danny*/
-
- if(location.href.match(/view/i)){
- var getRow = document.getElementsByTagName("tr");
- for(x=0; x<getRow.length; x++){
- if(getRow[x].cells[0].innerHTML.match(/(Joined:|Guest)/i) && getRow[x].cells[0].width == '20%'){
- var newCell = getRow[x].insertCell(2);
- var newHTML = getRow[x].cells[0].innerHTML;
- newCell.innerHTML = newHTML;
- newCell.vAlign = 'top';
- newCell.style.width = '20%';
- newCell.className = getRow[x].cells[1].className;
- getRow[x].cells[0].style.display ='none';
- }
- }
- }
-
- //-->
- </script>