﻿$(document).ready(function(){

        $(".target_blank").click(function(e){
            window.open(this.href);
            e.preventDefault();
        });

        $(".target_blank").keypress(function(e){
                if ( e.which==13 ){
                    window.open(this.href);
                    e.preventDefault();
                }
        });

});
