$(document).ready(function(){
        $('a.dnc_helplink').removeAttr('target'); // Remove the target attribute

        $('a.dnc_helplink').click(function() {
                window.open(this.href,'help','scrollbars=1,width=500,height=500,dependent=yes')
                return false; // Don't follow the link
        });
});
