function doConfirmGoBack(message) {
    if(window.confirm(message)) {
        history.go(-1);
    }
}