/* Credits Auto Link */

function autolink(){
    var span = document.getElementsByTagName('span');
    for (var i = 0; i < span.length; i++){
        if (span[i].className != "autolink"){
            continue;
        }
        span[i].onmouseover = function(){
            this.style.color = "#ff0000";
            this.style.borderBottom = "1px solid #ff0000";
            if (document.all & !isOpera){
                this.style.cursor = "hand";
            }
            else{
                this.style.cursor = "pointer";
            }
        }
        span[i].onmouseout = function(){
            this.style.color = "#000000";
            this.style.borderBottom = "1px dashed #000000";
        }
        span[i].onclick = function(){
            top.location = this.innerHTML;
        }
    }
}