I really like the rightclick view template function.
But I find it more useful if the original template would open in a new window.
To achieve this do the following
In ktemplate.php search for:
Code:
oncontextmenu=\"window.location=('template.php?s=$session[sessionhash]&action=view&title='+this.options[this.selectedIndex].text)\">
and replace it with
Code:
oncontextmenu=\"javascript:window.open('template.php?s=$session[sessionhash]&action=view&title='+this.options[this.selectedIndex].text,'_popit','resizeable=yes,toolbar=no,location=no,menubar=no,scrollbars=no,status=no,width=460, height=320')\">
That's it!