$(function() {
$('._blank a')
.mouseup(function(event){
if(event.button == 4)// For IE
window.open(this.href);
return false;
})
.click(function(event){//for Chrome
if(event.button == 1)
window.open(this.href);
return false;
})
});