(Video)
(Video)
Line 29:
       
  ==Video==    ==Video== 
       
- <div id="video" class="video">      
- <script>      
- var container = document.getElementById("video");      
- var frame = document.createElement("iframe");      
- frame.style.width = "550px";      
- frame.style.height = "310px";      
- frame.style.border = "none";      
       
- frame.onload = function () {      
- if (frame.contentDocument) {      
- var fdoc = frame.contentDocument;      
- var vframe = fdoc.createElement("iframe");      
       
- vframe.src = "https://www.youtube.com/embed/XBFV06saclQ";      
- vframe.setAttribute("frameborder", "0");      
- vframe.setAttribute("allowfullscreen", "");      
- vframe.style.width = "500px";      
- vframe.style.height = "281px";      
       
- fdoc.body.appendChild(vframe);      
- }      
- }      
- container.appendChild(frame);      
- </script>      
- </div>