if you want to add a new banner you will probably have to make a new variable
for example.. a new plugin with the code
PHP Code:
ob_start();
if (@include(getenv('DOCUMENT_ROOT').'/ads/phpadsnew.inc.php')) {
if (!isset($phpAds_context)) $phpAds_context = array();
$aNewVariable = view_raw ('', 0, '_blank', '', '0', $phpAds_context);
}
ob_end_clean();
notice the new variable name (it was phpAds_raw but now i made a new one called aNewVariable
then anywhere in your template
{$aNewVariable['html']}
i havent tested this but i think it should work OK
Jason