// JavaScript Document
Ext.onReady(function(){
   
   var embeddedHtml = '<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/mnm6Lk9RjQg?fs=1&amp;hl=en_US&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/mnm6Lk9RjQg&autoplay=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>'
   
   
   
  var panel = new Ext.Panel({
  id:'panel',
  html:embeddedHtml,
  width:490,
  height:440
  });
        
   var window = new Ext.Window({
     title:'Tracie Laymon',
     width:490,
	 height:440,
	 items:[panel],
	 border: false,
	 bodyBorder: false,
	 modal:true,
	 bbar:[{
			xtype:'button',
			text:'<b>Skip This Video</b>',
			handler:function(){
			window.close();
			}
   }]
   
   });
		
		window.show();
		
}); 

