$(document).ready(function() {

    $("#new_facility_menu a").click(function() {
        show_popup_for(this.href);
        return false;
    });

});

function show_popup_for(url) {
    window.open(url, "new_facility_popup", "scrollbars=yes,top=0,left=0,width=" + screen.availWidth + ",height=" + screen.availHeight + ",screenX=0,screenY=0");
}