Home | History | Annotate | Download | only in resources
      1 <html>
      2 <head>
      3 
      4 	<script type="text/javascript" src="@@JAVASCRIPT_SRC@@"></script>
      5 
      6 	<script type="text/javascript">
      7 		
      8 		function setVideo(url){
      9 			var videoframe = document.getElementById('video-frame');
     10 			videoframe.src = url;
     11 		}
     12 		
     13 		function adjustSize(x, y){
     14 			var videoframe = document.getElementById('video-frame');
     15 			videoframe.width = x;
     16 			videoframe.height = y;
     17 		}	
     18 		
     19 		hasFlashPlayer(swfobject.hasFlashPlayerVersion('1'));
     20 		
     21 	</script>
     22 
     23 </head>
     24 	
     25 <body style="margin:0; overflow:hidden; background-color:#000000;">
     26 
     27 	<iframe style="filter:alpha(Opacity=0);-moz-opacity(0);" id="video-frame" src="" frameborder="0" allowfullscreen></iframe>
     28 
     29 </body>
     30 
     31 </html>