﻿
        var oTrailerInserted = false;

        function attemptTrailerInsert()
        {
            if (oTrailerInserted == false)
            {
                oTrailerInserted = true;
                insertTrailer();
            }
        }
        
        function insertTrailer()
        {            
            var box;
            var swf;
            
            box = document.getElementById("FlvPlayerBox");
                        
            swf = document.createElement("embed");
            swf.id = "TrailerSwf";
            swf.type = "application/x-shockwave-flash";
            //swf.pluginspage = "http://www.macromedia.com/go/getflashplayer";
            swf.width = 227;
            swf.height = 165;
            swf.name = "trailer";
            swf.align = "middle";            
            swf.allowFullScreen = true;
            swf.src = "../Flash/igor-small.swf";
                                    
            box.appendChild(swf);                        
        }
        
        function openTC()
        {
            window.open('BTSIgorTcs.aspx','mywindow','left=600,top=150,width=590,height=600,scrollbars=1');
        }