				function flashResize(ele, height, width) {
					var uploader = document.getElementById(ele);
					
					if(height != 0)
						uploader.style.height = height+"px";
					
					if(width != 0)
						uploader.style.width = width+"px";
				}
				
				function canResizeFlash(){
					var ua = navigator.userAgent.toLowerCase();
					var opera = ua.indexOf("opera");
					
					if( document.getElementById ) {
						if(opera == -1) return true;
						else if(parseInt(ua.substr(opera+6, 1)) >= 7) return true;
					}
					
					return false;
				}
				
				e = canResizeFlash();


