--- a/happyworm/jPlayer/JplayerRtmp.as
+++ b/happyworm/jPlayer/JplayerRtmp.as
@@ -30,7 +30,6 @@
 	import flash.events.SecurityErrorEvent;
 	import flash.events.TimerEvent;
 	import flash.events.ErrorEvent;
-	import flash.events.UncaughtErrorEvent;
 	import flash.utils.clearInterval;
 	import flash.utils.setInterval;
 	import happyworm.jPlayer.ConnectManager;
@@ -82,39 +81,9 @@
 			seekingTimer.addEventListener(TimerEvent.TIMER,seekingHandler);
 
 			myStatus.volume = volume;
-			
-			addEventListener(UncaughtErrorEvent.UNCAUGHT_ERROR, uncaughtErrorHandler);
-
-			
 		}
 		
-		
         
-        private function uncaughtErrorHandler(event:UncaughtErrorEvent):void
-        {
-			trace("UNCAUGHT ERROR - try loading again");
-			
-            if (event.error is Error)
-            {
-                var error:Error = event.error as Error;
-				trace(error);
-                // do something with the error
-            }
-            else if (event.error is ErrorEvent)
-            {
-                var errorEvent:ErrorEvent = event.error as ErrorEvent;
-                // do something with the error
-				trace(errorEvent);
-            }
-            else
-            {
-                // a non-Error, non-ErrorEvent type was thrown and uncaught
-            }
-			load();
-        }
-		
-		
-		
 		private function progressUpdates(active:Boolean):void
 		{
 			if (active)
