Hi,
If I understand properly, this code in a template will help you:
...
...
$this->your_variable = 'some value';
...
$this->loadTemplate('customtemplate');
...
...
In the customtemplate you can access to the variable by way:
...
...
echo $this->your_variable;
...
...
Regards,
Pavel