Linking of static module:
<a href="?lang=de&id=20&type=page&mod=admin&tab=index">Load template</a>
The parameters lang, id, type, mod and tab are all optional if default values apply.
Linking of Ajax module:
<a onclick="xGet('?lang=de&id=20&mod=admin&tab=edit');">Load template</a>
A value for parameter mod is required. The other parameters are optional if default values apply.
// container where Ajax-Request may put its content
<div id="myTarget"></div>
// example of script-Tag in called template
<script>
var sb=[];
sb[sb.length]='hello world';
$('myTarget').innerHTML=sb.join('');
</script>