$(document).ready(function() {

$('a#newsletter').click(function() {
    var url = '/newsletter/popup/',
        name = 'eg-signup',
        specs = 'width=390px,height=200px';
    window.open(url, name, specs);
    return false;
});

});
