function openVTour(url) {
        var panel;

            panel = window.open(url, 'interests', 'left=100,top=100,width=390,height=300,resizable=1,scrollbars=1,location=no');

        if (window.focus) {
            panel.focus();
        }
        return false;
    }
