var NAMESPACE = window.NAMESPACE || {}

NAMESPACE.Badge = function() {

    var sCss = ' div#thestack_badge { width: 200px; height: 155px; border: 1px #000 solid; text-align: center; font-size: 12px; font-weight: bold; color: #000; background: #000; font-family: Trebuchet MS; letter-spacing: 1px; z-index: 100; } div#thestack_badge a { font-size: 1em; font-weight: bold; text-decoration: none; border: 0px; color: #000; } div#thestack_badge a img { height: 100px; width: 100%; border: 0px; } div#thestack_badge div#NNNHeader { width: 100%; height: 35px; background-image: url(http://s3assets.nextnewnetworks.com/5892.png); background-color: #fff; color: #000; } div#thestack_badge div#NNNHeader a { visibility: hidden; } div#thestack_badge div#NNNThumb img { visibility: visible; width: 100%; height: 120px; background: #000; } div#thestack_badge div#NNNFooter { width: 100%; height: 50px; background: #000000; display: none; } /* player css */ div#thestack_badge div#thestack_player { font-size: 40px; position: fixed; left: 20%; top: 5%; width: 450px; height: 392px; border: 0px; z-index: 100; } div#thestack_badge div#thestack_player #Header { font-size: 1.5em; width: 100%; height: 60px; background: transparent url(http://s3assets.nextnewnetworks.com/5901.png) no-repeat; } div#thestack_badge div#thestack_player #Header #playertitle { font-size: 0px; width: 100%; height: 60px; text-align: center; background: #FFFF00; float: left; clear: both; display: none; } div#thestack_badge div#thestack_player #Header #closelink { color: #000; float: right; width: 18px; height: 18px; } div#thestack_badge div#thestack_player #Header #closelink a span#closelinktext{ font-size: 40px; display: block; width: 100%; height: 100%; visibility: hidden; } div#thestack_badge div#thestack_player #Desc { background: #000; padding: 0px; } div#thestack_badge div#thestack_player #Body { width: 450px; height: 303px; background: #000; padding: 0px; } div#thestack_badge div#thestack_player #Footer { width: 100%; height: 40px; background: url(http://s3assets.nextnewnetworks.com/5893.png) no-repeat; } div#thestack_badge div#thestack_player #Footer a { font-size: 12px; font-family: arial; font-weight: normal; text-align: left; margin-top: 5px; margin-left: 15px; float: left; }';

    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="thestack_badge"><div id="NNNHeader"><a href="http://www.pulpsecret.com/the-stack/episode/STK_20080730">New On The Stack</a></div><script type="text/javascript" src="http://www.pulpsecret.com/javascript/prototype.js"></script><script type="text/javascript" src="http://www.pulpsecret.com/javascript/NNNDrag.js"></script><div id="NNNThumb"><a href="#" onClick="thestack_playerRevealPlayer(); return false;"><img src="http://images.nextnewnetworks.com/12243.jpg"/></a></div><div id="NNNFooter"><a href="http://www.pulpsecret.com/the-stack/episode/STK_20080730">SDCC Highlights featuring The Greatest American Hero &amp; Darwyn Cooke</a></div><div id="thestack_player" style="display:none;"><div id="Header" onmousedown="dragStart(event,\'thestack_player\');"><div id="playertitle">New On The Stack</div><div id="closelink"><a href="#" onClick="thestack_playerHidePlayer(); return false;"><span id="closelinktext"> ( Close )</span></a></div></div><div id="Body"><object width="450" height="303" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" id="player"><param value="http://www.pulpsecret.com/embed/player" name="movie"/><param value="always" name="allowscriptaccess"/><param value="video_file=http://www.pulpsecret.com/partner/play/STK_20080730" name="flashvars"/><param value="opaque" name="wmode"/><embed src="http://www.pulpsecret.com/embed/player" width="450" height="303" allowScriptAccess="always" FlashVars="video_file=http://www.pulpsecret.com/partner/play/STK_20080730" wmode="opaque" type="application/x-shockwave-flash"/></object></div><div id="Footer"><a href="http://www.pulpsecret.com/the-stack/episode/STK_20080730"><span id="footertext">SDCC Highlights featuring The Greatest American Hero &amp; Darwyn Cooke</span></a></div><script type="text/javascript">function thestack_playerRevealPlayer() {$("thestack_player").show(); };function thestack_playerHidePlayer() {$("thestack_player").hide(); }</script></div></div>\x0a');
    };
    
    return {
        Init : function() {
            if (document.getElementById && document.createTextNode)
            {
                getCss();
                getHtml();
            }
        }
    };
    
}();

NAMESPACE.Badge.Init();


