I am making a banner exchange network and having a hard time figuring out a Javascript issue. The following code is to be placed on partner websites. It should display a 100x100 banner. <script type="text/javascript" src="http://www.website.com/display.asp?s=12345"></script> What do I need on the display.asp page in order to display the banner on the partner site? The display.asp page reads the variable being passed, makes sure it is from an active partner account, logs information to a database about each banner view and then displays the banner. Everything works except I don't know how to display the banner using the above Javascript partner code. I have tried using asp to write the following javascript on display.asp but nothing shows up on the partners page with the code. <SCRIPT language="javascript"> var rand = Math.round(Math.random() * 10000); document.write('<iframe rel="nofollow" src="http://www.domain.com/displaybanner.asp?s=" marginwidth="0" marginheight="0" height="100" width="100" scrolling="no" border="0" frameborder="0" style="margin: 0px" name="AB'+rand+'"></iframe>'); </SCRIPT> Any help would be greatly appreciated. Thank you in advance.