﻿function CheckToReadArticle(strArticleURL) {
    var answer = confirm("Would you like to read the article now?")

    if (answer) {
        window.open(strArticleURL);
    }    
}
