Everything is dynamically driven
This code will be in the footer and generate differently each time its ran
I have this so far but can't get it working
<SCRIPT LANGUAGE = JavaScript>
//alert(document.title)
{
document.write("<META NAME=\"funnel\" CONTENT=\"" + document.title + "\">\n");
var meta = document.createElement('meta');
meta.setAttribute('name', 'funnel1');
meta.setAttribute('content', document.title);
document.getElementsByTagName('head')[0].appendChild(meta); }
</SCRIPT>