I'm trying to add a dash - and a defined string $pageurle right after the {target} sothat the url in the href (se below code) is extended with, naturally a dash and the contents of the variable $pageurle
See the existing piece of code into which I would like to inject the dash & variable right after the href:
// html for breadcrumbs
var $breadcrumb_templates = array(
'separator' => '→',
'link' => '<a href="{target}">{name}</a>',
'wrapper' => '<div class="breadcrumbs">{items}</div>',
);
Now, when I add the dash and the $pageurle, dreamweaver says i'm doing something wrong and shows an eror. I must be doing something stupid here... but what? Your ideas/code/improvements/possible dives into this matter are much appreciated by me.

'link' => '<a href="{target}' . " " . $pageurle . '">{name}</a>',@pst after . its still no good... error remains in DW :( thanks though for your coment +1 see my updated image