

function trackFloodlight(p_cat)
{
    //salert(p_cat);
    var axel = Math.random() + "";
    var a = axel * 10000000000000;
    var floodlightTag = '"http://fls.doubleclick.net/activityi;src=2769141;type=sntpc067;cat=' + p_cat + ';ord=1;num=' + a + '?" width="1" height="1"'
    if(document.getElementById("flDiv"))
    {
        var flDiv=document.getElementById("flDiv");
    }
    else
    {
        var flDiv=document.body.appendChild(document.createElement("div"));
        flDiv.setAttribute("id","flDiv");
        flDiv.style.position="absolute";
        flDiv.style.visibility="hidden";
        flDiv.style.top="0px";
    }    
    
    flDiv.innerHTML='<iframe id="DCLK_FLIframe" src='+floodlightTag+'></iframe>';
    
    
}
