banner.tpl
856 Bytes
{if $banner.id > 0}
{if $banner.type eq "flash"}
<div id="flash_{$banner.id}"></div>
<script type="text/javascript">
$('#flash_{$banner.id}').flash({
'src': '{$config->url}/pics/banners/{$banner.file}',
'width':'{$banner.width}',
'height':'{$banner.height}',
'allowfullscreen':'true',
'allowScriptAccess':'always',
'wmode':'transparent'
});
</script>
{elseif $banner.type eq "image"}
<a href="http://{$banner.url}"><img src="{$config->url}/pics/banners/{$banner.file}" width="{$banner.width}" height="{$banner.height}" border="0" /></a>
{if $banner.code}<br /><a href="http://{$banner.url}">{$banner.code|stripslashes}</a>{/if}
{elseif $banner.type eq "code"}
{$banner.code|stripslashes}
{/if}
{/if}