function confirm_entry(URL,message) {
    var input_box=confirm(message);
    if (input_box==true) {
        window.location=URL;
    }
}

function confirm_flag() {
    return confirm("If you flag this item as inappropriate the\nmoderator of this group will be notified.\nFlag this item?");
}

function confirm_del() {
    return confirm("Are you sure you want to delete?");
}

function toggleBlock(toggleName,showHTML,hideHTML) {
    var toggleText=toggleName + 'Text';
    var example = document.getElementById(toggleText);
    if (example.style.display == "none") {
        // alert('Hiding ' + toggleName + ' now showing ' + showHTML);
        example.style.display = "block";
        document.getElementById(toggleName).innerHTML = showHTML;
    } else {
        // alert('Hiding ' + toggleName + ' now showing ' + showHTML);
        example.style.display = "none";
        document.getElementById(toggleName).innerHTML = hideHTML;
    }
}

function confirm_join_club() {
	return confirm("Are you sure you want to join this club?");
}
