Hi, I have the following script for an interactive screen for car hire from TradeDoubler.co.uk
<script type="text/javascript">
var uri = 'http://impgb.tradedoubler.com/imp?type(js)g(16928942)a(1119399)' + new String (Math.random()).substring (2, 11);
document.write('<sc'+'ript type="text/javascript" src="'+uri+'" charset="ISO-8859-1"></sc'+'ript>');
</script>
There is also an iframe version, which gives this script:
<script type="text/javascript">
var uri = 'http://impgb.tradedoubler.com/imp?type(iframe)g(16928942)a(1119399)' + new String (Math.random()).substring (2, 11);
document.write('<iframe src="'+uri +'" width="402" height="235" frameborder="0" border="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>');
</script>
I'm not entirely sure how to put the script into a page? I tried putting the script into a text/html module but it doesn display.
Any ideas?