Popup without blocker

HTML

<a href="http://www.google.com" class="open-popup">test</a>

JavaScript

$('.open-popup').click(function(e) {
    e.preventDefault();
    //put href in <a> tag and use this.href to prevent blocker
    window.open(this.href, '_blank', 'width=100%,height=100%');
});