<!--

function goto_topic() {
    var dirName;
    
    if (document.topic_list.topics.selectedIndex == -1) {
        alert('Select one of your topics and then hit the go button');
    }
    else {
        dirName = document.topic_list.topics.options[document.topic_list.topics.selectedIndex].value;

        location.href = dirName;
    }
}
//-->