jQuery(document).ready(function()
{

    jQuery("a.target_blank").click(
        function() {
            window.open(jQuery(this).attr('href'),'');
            return false;
        }
    );

    jQuery("div.related_content form").each(function() {
        var action = jQuery(this).attr('action');
        jQuery(this).attr('action', action + '#related_content')
    });

});