function secureQuestion(link, text) {
    if(text != 'false') {
        message = confirm(text);
        if(message == true) {
            location.href = "http://" + location.host + link;
        }
        return null;
    } else {
        location.href = "http://" + location.host + link;
    }
}
