
function showCoverage(url) {
    var width = 700;
    var height = 400;
    var attributes = 'width='+ width +', height='+ height +', scrollbars=yes, dependent=yes, alwaysRaised=yes, status=yes';

    var w = window.open(url, 'popup_coverage', attributes);
    w.focus();
}
