function confirmDelete(delUrl) { if (confirm("Are you sure you want to delete this record?")) { document.location = delUrl; } } function confirmDeleteAd(delUrl) { if (confirm("Are you sure you want to delete this ad?")) { document.location = delUrl; } } function confirmDeleteMessage(delUrl) { if (confirm("Are you sure you want to delete this message? NOTE: All replies to the message will also be deleted.")) { document.location = delUrl; } } function confirmDeleteForum(delUrl) { if (confirm("Are you sure you want to delete this message forum? NOTE: All topics and messages contained within it will also be deleted.")) { document.location = delUrl; } } function confirmDeleteLink(delUrl) { if (confirm("Are you sure you want to delete this link?")) { document.location = delUrl; } } function confirmInvite(invUrl) { if (confirm("This will send an email inviting the member to click a link and select a username and password. Are you sure you want to do this?")) { document.location = invUrl; } }