var NAMESPACE = window.NAMESPACE || {}

NAMESPACE.Badge = function() {

    var sCss = 'div#fast_lane_daily_fld_20071009_badge { width: 200px; height: 170px; border: 1px #000 solid; text-align: center; font-size: 12px; font-weight: bold; color: #000; background: #000; } div#fast_lane_daily_fld_20071009_badge a { font-size: 14px; font-weight: bold; text-decoration: none; border: 0px; color: #000; } div#fast_lane_daily_fld_20071009_badge a img { height: 110px; width: 100%; border: 0px; } div#fast_lane_daily_fld_20071009_badge div#NNNHeader { width: 100%; height: 20px; background: #FFFFFF; color: #000; } div#fast_lane_daily_fld_20071009_badge div#NNNThumb img { width: 100%; height: 100%; background: #000; } div#fast_lane_daily_fld_20071009_badge div#NNNFooter { width: 100%; height: 50px; background: #FFFFFF; display: none; } div#fast_lane_daily_fld_20071009_badge div#fast_lane_daily_player { font-size: 40px; position: absolute; left: 20%; top: 20%; width: 500px; height: 500px; border: 2px #000 solid; } div#fast_lane_daily_fld_20071009_badge div#fast_lane_daily_player #Header { font-size: 30px; width: 100%; height: 55px; background: #FFFFFF; } div#fast_lane_daily_fld_20071009_badge div#fast_lane_daily_player #Body { width: 500px; height: 395px; background: #000; padding: 0px; } div#fast_lane_daily_fld_20071009_badge div#fast_lane_daily_player #Footer { font-size: 30px; width: 100%; height: 50px; background: #FFFFFF; }';

    function getCss()
    {
        var Headobject = document.getElementsByTagName('head')[0];
        
        var CSSobject = document.createElement('style');
        
        CSSobject.setAttribute('type','text/css');
        
        if (CSSobject.styleSheet) {
            CSSobject.styleSheet.cssText = sCss;
        } else {
            CSSobject.appendChild(document.createTextNode(sCss));
        }

        Headobject.appendChild(CSSobject);
    };
    
    function getHtml()
    {
        document.write('<?xml version="1.0" encoding="UTF-8"?>\x0a<div id="fast_lane_daily_fld_20071009_badge"><div id="NNNHeader"><a href="http://www.fastlanedaily.com/episode/fld_20071009">New On Fast Lane Daily</a></div><script type="text/javascript" src="http://www.fastlanedaily.com/javascript/prototype.js"></script><script type="text/javascript" src="http://www.fastlanedaily.com/javascript/NNNDrag.js"></script><div id="NNNThumb"><a href="#" onClick="fast_lane_daily_playerRevealPlayer(); return false;"><img src="http://s3assets.nextnewnetworks.com/4278.jpg"/></a></div><div id="NNNFooter"><a href="http://www.fastlanedaily.com/episode/fld_20071009">09 October 2007</a></div><div id="fast_lane_daily_player" style="display:none;"><div id="Header" onmousedown="dragStart(event,\'fast_lane_daily_player\');"><div id="playertitle">New On Fast Lane Daily</div><div id="closelink"><a href="#" onClick="fast_lane_daily_playerHidePlayer(); return false;"><span id="closelinktext"> ( Close )</span></a></div></div><div id="Body"><object><embed src="http://www.fastlanedaily.com/embed/player" width="500" height="426" allowScriptAccess="always" FlashVars="video_file=http://www.fastlanedaily.com/partner/play/fld_20071009" wmode="opaque" type="application/x-shockwave-flash"/></object></div><div id="Footer"><a href="http://www.fastlanedaily.com/episode/fld_20071009"><span id="footertext">09 October 2007</span></a></div><script type="text/javascript">function fast_lane_daily_playerRevealPlayer() {$("fast_lane_daily_player").show(); };function fast_lane_daily_playerHidePlayer() {$("fast_lane_daily_player").hide(); }</script></div></div>\x0a');
    };
    
    return {
        Init : function() {
            if (document.getElementById && document.createTextNode)
            {
                getCss();
                getHtml();
            }
        }
    };
    
}();

NAMESPACE.Badge.Init();


