﻿// Displays a message to the user if a popup blocker is detected.

function detectPopupBlocker() {
    var detectorWindow = window.open("about:blank", "", "directories=no,height=100,width=100,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,top=0,location=no");
    if (!detectorWindow) {
        alert("A popup blocker was detected. Please disable popup blocking for this site to allow the news window to work correctly.");
    }
    else {
        detectorWindow.close();
        //alert("No popup blocker was detected.");
    }
}

