﻿$(document).ready(function() {
   $('.target-blank').click(function(){
       window.open(this.href);
       return false;
   });         
});