function jsconfirm(strText, strURL) {
    if (confirm(strText)) {
        window.location = strURL
    }
}
