
    var lInsightExpress = {};
	lInsightExpress.AddEvent = function(obj, evType, fn)
	{ 
		if (obj.addEventListener){ 
			obj.addEventListener(evType, fn, false); 
			return true; 
		} else if (obj.attachEvent){ 
			var r = obj.attachEvent('on'+evType, fn); 
			return r; 
		} else { 
			return false; 
		} 
	}
    lInsightExpress.Poll = function()
    {
        if (typeof( window[ 'InsightExpress' ] ) != 'undefined' && InsightExpress.OnLoad)    
            InsightExpress.OnLoad();                
        else                        
            setTimeout(lInsightExpress.Poll, 500);    
    }        
    lInsightExpress.AddEvent(window, 'load', function() 
	{ 
        var s = document.createElement('SCRIPT');
        s.type='text/javascript';    
        s.src = 'http://espanol.tylenol.com/enes/sdai1249/dinsightexpressai/adServer/GetInvite.aspx?bannerID=36733&PublisherID=1090&';
        document.getElementsByTagName('body')[0].appendChild(s);
        lInsightExpress.Poll();
	});
