function GetSelectedIndex( form ) {
        return form.list.selectedIndex;
}

function go( form, which ){
        if (which == "site") {
                where = "";
        }



        parent.location.href = where +
                form.list.options[GetSelectedIndex( form )].value;
}
