Откройте 2 ссылки с одним щелчком html jQuery
$('a.yourlink').click(function(e) {
e.preventDefault();
window.open('http://yoururl1.com');
window.open('http://yoururl2.com');
});
Thoughtless Trout