When i insert a code like this in the comment form it opens up in a new window, is it possible to switch this off so it opens in the same window?
Open file /components/com_jcomments/jcomments.class.php and remove code:
target="_blank".
For example you need replace:
$replacements[] = '<a href="\\1" target="_blank">\\1</a>';
with
$replacements[] = '<a href="\\1">\\1</a>';
and with all other cases...