I haven't been able to get the size parameters working properly...if I try to specify a size, the banner disappears altogether.
Here is the invocation code I'm testing (remote javascript method):
PHP Code:
<!--
if (!document.phpAds_used) document.phpAds_used = ',';
phpAds_random = new String (Math.random()); phpAds_random = phpAds_random.substring(2,11);
document.write ("<" + "script language='JavaScript' type='text/javascript' src='");
document.write ("http://www.acuraworld.com/ads/adjs.php?n=" + phpAds_random);
document.write ("&what=$forum_ad_keywords@width:120");
document.write ("&exclude=" + document.phpAds_used);
if (document.referer)
document.write ("&referer=" + escape(document.referer));
document.write ("'><" + "/script>");
//-->
</script><noscript><a href='http://www.acuraworld.com/ads/adclick.php?n=a1d9c3f2' target='_blank'><img src='http://www.acuraworld.com/ads/adview.php?what=home@width:120&source=http%3A%2F%2Fwww.acuraworld.com&n=a1d9c3f2' border='0' alt=''></a></noscript>
According to the manual, I replaced the "," delimiters with a "/" and appended the "@" symbol to the end of the string to create a parameter for the entire expression - but it's not working at all.

I've checked the output of the code to be sure it's picking up the keywords variable, and it is...
Any ideas?