ладно, как вам такой вариант?
function my_redirect(url){
newWindow=window.open('','','width=800,height=600,resizable=yes,scrollbars=yes')
newWindow.location.href = url
newWindow.document.close();
return false;
}
$('input[type=button]').click(function(){
return my_redirect('http://yandex.ru');
})
<input type="button" value="Кнопка">