				YAHOO.namespace("example.container");

				
				
				function makeRequest2() {
					// Initialize the temporary Panel to display while waiting for external content to load
					
							YAHOO.example.container.two = 
							new YAHOO.widget.Panel("two",  
															{ width:"820px", 
															  context:["flash","tr","tr"],  
															iframe:true,
															  draggable:false, 
															  modal:true,
															  underlay:"none",
															  visible:false,
															  effect:{effect:YAHOO.widget.ContainerEffect.FADE, duration:0.9} 
															} 
														);

					YAHOO.example.container.two.render(document.body);

					// Define the callback object for Connection Manager that will set the body of our content area when the content has loaded
			
					var content = document.getElementById("two");
					var content2 = document.getElementById("flash");
					var callback = {
						success : function(o) {
						
							content2.style.visibility = "hidden";
							content.style.visibility = "visible";
							content.innerHTML = o.responseText;
							
							
						},
						failure : function(o) {
							content.innerHTML = o.responseText;
							content.style.visibility = "visible";
							content.innerHTML = "CONNECTION FAILED!";
							content2.style.visibility = "hidden";
							
							
						}
					}
				
					YAHOO.example.container.two.show();
					YAHOO.util.Connect.asyncRequest("GET", "supports/2.html", callback);
					
				}
				
				
				
				
				
				// Close Flash

				
				function hideRequest2() {
				var content = document.getElementById("two");
				content.innerHTML = "CONNECTION FAILED!";
				YAHOO.example.container.two.destroy();
				var content2 = document.getElementById("flashbucket");
				content2.style.visibility = "visible";
				
				}
						
				