﻿function IWW_ConfirmExit(urlStr) {
    if (confirm('This link will take you to an external web site')) {
        window.location.href = urlStr;
    }
}
