bplist00_WebMainResource_WebSubresources ^WebResourceURL_WebResourceFrameName_WebResourceData_WebResourceTextEncodingName_WebResourceMIMEType_ FEIN General Catalog 2009
UUTF-8Ytext/html_WebResourceResponseOFbplist00 X$versionT$topY$archiverX$objects_WebResourceResponse_NSKeyedArchiver &,-345MNOPQRSTUVWXYZ[\M]^bcU$null  !"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1 '()$+WNS.base[NS.relative_Hhttp://www.media-office-gmbh.de/eMag_FEIN/USA_A20/player/js/swfobject.js./01X$classesZ$classname12UNSURLXNSObject#AwJ 6789CWNS.keysZNS.objects:;<=>?@AB DEFGHIJKLZKeep-Alive]Accept-RangesVServer\Content-TypeTDate^Content-LengthTEtagZConnection]Last-Modified_timeout=15, max=100Ubytes_(Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13_application/x-javascript_Wed, 14 Jul 2010 16:09:25 GMTT8662_"bef1-21d6-bdf75e00"_Fri, 15 Sep 2006 15:33:12 GMT./_``a2_NSMutableDictionary\NSDictionary!./deef2_NSHTTPURLResponse]NSURLResponse)27:PRd  W\epsy"'2@V\*-26JgX_Hhttp://www.media-office-gmbh.de/eMag_FEIN/USA_A20/player/js/swfobject.jsO!/** * SWFObject v2.0: Flash Player detection and embed - http://blog.deconcept.com/swfobject/ * * SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License: * http://www.opensource.org/licenses/mit-license.php * */ if(typeof deconcept == "undefined") var deconcept = new Object(); if(typeof deconcept.util == "undefined") deconcept.util = new Object(); if(typeof deconcept.SWFObjectUtil == "undefined") deconcept.SWFObjectUtil = new Object(); deconcept.SWFObject = function(swf, id, w, h, ver, c, quality, xiRedirectUrl, redirectUrl, detectKey) { if (!document.getElementById) { return; } this.DETECT_KEY = detectKey ? detectKey : 'detectflash'; this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY); this.params = new Object(); this.variables = new Object(); this.attributes = new Array(); if(swf) { this.setAttribute('swf', swf); } if(id) { this.setAttribute('id', id); } if(w) { this.setAttribute('width', w); } if(h) { this.setAttribute('height', h); } if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); } this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion(); if (!window.opera && document.all && this.installedVer.major > 7) { // only add the onunload cleanup if the Flash Player version supports External Interface and we are in IE deconcept.SWFObject.doPrepUnload = true; } if(c) { this.addParam('bgcolor', c); } var q = quality ? quality : 'high'; this.addParam('quality', q); this.setAttribute('useExpressInstall', false); this.setAttribute('doExpressInstall', false); var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location; this.setAttribute('xiRedirectUrl', xir); this.setAttribute('redirectUrl', ''); if(redirectUrl) { this.setAttribute('redirectUrl', redirectUrl); } } deconcept.SWFObject.prototype = { useExpressInstall: function(path) { this.xiSWFPath = !path ? "expressinstall.swf" : path; this.setAttribute('useExpressInstall', true); }, setAttribute: function(name, value){ this.attributes[name] = value; }, getAttribute: function(name){ return this.attributes[name]; }, addParam: function(name, value){ this.params[name] = value; }, getParams: function(){ return this.params; }, addVariable: function(name, value){ this.variables[name] = value; }, getVariable: function(name){ return this.variables[name]; }, getVariables: function(){ return this.variables; }, getVariablePairs: function(){ var variablePairs = new Array(); var key; var variables = this.getVariables(); for(key in variables){ variablePairs.push(key +"="+ variables[key]); } return variablePairs; }, getSWFHTML: function() { var swfNode = ""; if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture if (this.getAttribute("doExpressInstall")) { this.addVariable("MMplayerType", "PlugIn"); this.setAttribute('swf', this.xiSWFPath); } swfNode = ' 0){ swfNode += 'flashvars="'+ pairs +'"'; } swfNode += '/>'; } else { // PC IE if (this.getAttribute("doExpressInstall")) { this.addVariable("MMplayerType", "ActiveX"); this.setAttribute('swf', this.xiSWFPath); } swfNode = ''; swfNode += ''; var params = this.getParams(); for(var key in params) { swfNode += ''; } var pairs = this.getVariablePairs().join("&"); if(pairs.length > 0) {swfNode += '';} swfNode += ""; } return swfNode; }, write: function(elementId){ if(this.getAttribute('useExpressInstall')) { // check to see if we need to do an express install var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]); if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) { this.setAttribute('doExpressInstall', true); this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl'))); document.title = document.title.slice(0, 47) + " - Flash Player Installation"; this.addVariable("MMdoctitle", document.title); } } if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version'))){ var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId; n.innerHTML = this.getSWFHTML(); return true; }else{ if(this.getAttribute('redirectUrl') != "") { document.location.replace(this.getAttribute('redirectUrl')); } } return false; } } /* ---- detection functions ---- */ deconcept.SWFObjectUtil.getPlayerVersion = function(){ var PlayerVersion = new deconcept.PlayerVersion([0,0,0]); if(navigator.plugins && navigator.mimeTypes.length){ var x = navigator.plugins["Shockwave Flash"]; if(x && x.description) { PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split(".")); } }else{ // do minor version lookup in IE, but avoid fp6 crashing issues // see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/ try{ var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7"); }catch(e){ try { var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6"); PlayerVersion = new deconcept.PlayerVersion([6,0,21]); axo.AllowScriptAccess = "always"; // throws if player version < 6.0.47 (thanks to Michael Williams @ Adobe for this code) } catch(e) { if (PlayerVersion.major == 6) { return PlayerVersion; } } try { axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash"); } catch(e) {} } if (axo != null) { PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(",")); } } return PlayerVersion; } deconcept.PlayerVersion = function(arrVersion){ this.major = arrVersion[0] != null ? parseInt(arrVersion[0]) : 0; this.minor = arrVersion[1] != null ? parseInt(arrVersion[1]) : 0; this.rev = arrVersion[2] != null ? parseInt(arrVersion[2]) : 0; } deconcept.PlayerVersion.prototype.versionIsValid = function(fv){ if(this.major < fv.major) return false; if(this.major > fv.major) return true; if(this.minor < fv.minor) return false; if(this.minor > fv.minor) return true; if(this.rev < fv.rev) return false; return true; } /* ---- get value of query string param ---- */ deconcept.util = { getRequestParameter: function(param) { var q = document.location.search || document.location.hash; if(q) { var pairs = q.substring(1).split("&"); for (var i=0; i < pairs.length; i++) { if (pairs[i].substring(0, pairs[i].indexOf("=")) == param) { return pairs[i].substring((pairs[i].indexOf("=")+1)); } } } return ""; } } /* fix for video streaming bug */ deconcept.SWFObjectUtil.cleanupSWFs = function() { var objects = document.getElementsByTagName("OBJECT"); for (var i=0; i < objects.length; i++) { objects[i].style.display = 'none'; for (var x in objects[i]) { if (typeof objects[i][x] == 'function') { objects[i][x] = function(){}; } } } } // fixes bug in fp9 see http://blog.deconcept.com/2006/07/28/swfobject-143-released/ if (deconcept.SWFObject.doPrepUnload) { deconcept.SWFObjectUtil.prepUnload = function() { __flash_unloadHandler = function(){}; __flash_savedUnloadHandler = function(){}; window.attachEvent("onunload", deconcept.SWFObjectUtil.cleanupSWFs); } window.attachEvent("onbeforeunload", deconcept.SWFObjectUtil.prepUnload); } /* add Array.push if needed (ie5) */ if (Array.prototype.push == null) { Array.prototype.push = function(item) { this[this.length] = item; return this.length; }} /* add some aliases for ease of use/backwards compatibility */ var getQueryParamValue = deconcept.util.getRequestParameter; var FlashObject = deconcept.SWFObject; // for legacy support var SWFObject = deconcept.SWFObject; _application/x-javascriptOLbplist00 X$versionT$topY$archiverX$objects_WebResourceResponse_NSKeyedArchiver &,-345MNOPQRSTUVWXYZ[\M]^bcU$null  !"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1 '()$+WNS.base[NS.relative_Ohttp://www.media-office-gmbh.de/eMag_FEIN/USA_A20/player/js/swfmacmousewheel.js./01X$classesZ$classname12UNSURLXNSObject#Aw6 6789CWNS.keysZNS.objects:;<=>?@AB DEFGHIJKLZKeep-Alive]Accept-RangesVServer\Content-TypeTDate^Content-LengthTEtagZConnection]Last-Modified_timeout=15, max=100Ubytes_(Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13_application/x-javascript_Wed, 14 Jul 2010 16:09:25 GMTT1816_"bef0-718-5a044580"_Wed, 08 Nov 2006 00:25:10 GMT./_``a2_NSMutableDictionary\NSDictionary./deef2_NSHTTPURLResponse]NSURLResponse)27:PRd  ^clwz).9G]c  #038<Pg^_Ohttp://www.media-office-gmbh.de/eMag_FEIN/USA_A20/player/js/swfmacmousewheel.jsO/** * SWFMacMouseWheel v1.0: Mac Mouse Wheel functionality in flash - http://blog.pixelbreaker.com/ * * SWFMacMouseWheel is (c) 2006 Gabriel Bucknall and is released under the MIT License: * http://www.opensource.org/licenses/mit-license.php * * Dependencies: * SWFObject v2.0 - (c) 2006 Geoff Stearns. * http://blog.deconcept.com/swfobject/ */ function SWFMacMouseWheel( swfObject ) { this.so = swfObject; var isMac = navigator.appVersion.toLowerCase().indexOf( "mac" ) != -1; if( isMac ) this.init(); } SWFMacMouseWheel.prototype = { init: function() { SWFMacMouseWheel.instance = this; if (window.addEventListener) { window.addEventListener('DOMMouseScroll', SWFMacMouseWheel.instance.wheel, false); } window.onmousewheel = document.onmousewheel = SWFMacMouseWheel.instance.wheel; }, handle: function( delta ) { document[ this.so.getAttribute('id') ].externalMouseEvent( delta ); }, wheel: function(event){ var delta = 0; if (event.wheelDelta) { /* IE/Opera. */ delta = event.wheelDelta/120; if (window.opera) delta = -delta; } else if (event.detail) { /** Mozilla case. */ delta = -event.detail/3; } if( /AppleWebKit/.test(navigator.userAgent) ) { delta /= 3; } /** If delta is nonzero, handle it. * Basically, delta is now positive if wheel was scrolled up, * and negative, if wheel was scrolled down. */ if (delta) SWFMacMouseWheel.instance.handle(delta); /** Prevent default actions caused by mouse wheel. * That might be ugly, but we handle scrolls somehow * anyway, so don't bother here.. */ if (event.preventDefault) event.preventDefault(); event.returnValue = false; } };O1bplist00 X$versionT$topY$archiverX$objects_WebResourceResponse_NSKeyedArchiver &,-345MNOPQRSTUVWXYZ[\M]^bcU$null  !"#$%V$classR$3R$8S$10S$11R$5R$6R$4R$7R$2R$9R$0R$1 '()$+WNS.base[NS.relative_Ihttp://www.media-office-gmbh.de/eMag_FEIN/USA_A20/player/styles/style.css./01X$classesZ$classname12UNSURLXNSObject#Aw 6789CWNS.keysZNS.objects:;<=>?@AB DEFGHIJKLZKeep-Alive]Accept-RangesVServer\Content-TypeTDate^Content-LengthTEtagZConnection]Last-Modified_timeout=15, max=100Ubytes_(Apache/2.2.3 (Debian) PHP/5.2.0-8+etch13Xtext/css_Wed, 14 Jul 2010 16:09:25 GMTS199_"7fd4-c7-8f164700"_Wed, 02 Jul 2008 12:23:24 GMT./_``a2_NSMutableDictionary\NSDictionary./deef2_NSHTTPURLResponse]NSURLResponse)27:PRd  X]fqtz#(3AW] !5gC_Ihttp://www.media-office-gmbh.de/eMag_FEIN/USA_A20/player/styles/style.cssO/* hide from ie on mac \*/ html { height: 100%; overflow: hidden; } #flashcontent { height: 100%; } /* end hide */ body { height: 100%; margin: 0; padding: 0; background-color: #ffffff; }Xtext/css !"Obplist00 X$versionT$topY$archiverX$objects_WebResourceResponse_NSKeyedArchiver #)*0"1234U$null  !"V$classR$3R$8R$5R$6R$4R$7R$2R$9R$0R$1   $%&'(WNS.base[NS.relative_+http://www.media-office-gmbh.de/favicon.ico+,-.X$classesZ$classname./UNSURLXNSObject#Ac\image/x-iconP#+,566/]NSURLResponse)27:PRdpv%039BKXYbgj7x_+http://www.media-office-gmbh.de/favicon.icoOx@@ (B600 %^B  h(@ BuHCpAo6k%a6k9n8n7n7o6o6o6o6o6o6o6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6p6o6o6o6o6o7o7n7n8n:m3i0hCqIsb` `%\WVZ]^_aabbccccccccccccccccccccccccccccccccccccbbb``^][VUXMtݦC[PT[_acdfhhhiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiihhgfeca_\W MLuٛo ,aR[^bdghjkllmmmmmmnnnnnnnnnnnnnnnnnnnnnnnnnnmmmmmmmlkjigec_\UWv^aYW]adgjkmnopo p p p p q p p p p p p p p p p p p p p p p p p p p p p p p p p q q p p ppoponljheb^ZQQyKvWY_cgjlmo p q r r r r r r s s s s s s s s s s s s s s s s s s s s s s s s s s s s s r r r r r q ppnmjhd_[R>n@nU[`dhln o q r r!s!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!t!s!s!s r q pnlifa]V&^bQ]bfjmp q s!s!t!u!u!u!u!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!v!u!u!u!u!u!t s q pnkgc_W0cW}R^cgkn q r!t!u!v!v!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!w!v!v!u!t s qolie`V>oNyT_dhlo q!s!u!v!w!w!w!w!w"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x"x!w!w!w!w!w!v!u!s rpmie`X7kHvU_dimp r!s!u!v!w!w"x"x"xvsqpooprt!w"x"x"x"x"x"x"x"x"x"x"x"x"x"x wtrqpprtv"x"x!w!w!w!u!t r pnjfaY6iFtV`eimp r!s!u!w!w"x"x ws(|Oq~fDvt"x"y"y"y"y"y"y"y"y"y"y!xr wDeuyxiM,~sv"x!w!w!v!t s pnjfaY5iDsV`eim p r!t!u!w!w"xsuj>rw"y"y"y"y"y"y"y"yuu\}$ys!w!w!v!t s qnjfaY4iCsV`eim p r!t!v!w!wrCwv"y"y"y"y"y"yr?Yqv!v!u s qnkfaY4iBsW`ein p s!t!v!wqY(|v"y"y"y"yr_qu!u!s qokgbY3hBrW`ein p s!t!vpS"yw"y"yr[p t!s qokgbZ3hBrW`ein p s!tr5s"yv8^n!s qokgbZ3hBrW`ejn p s tq[su2q qokgbZ3hBrW`ejm p spHpTxk qokgbZ3hAqW`ejm p smx,#tpokgbZ2hAqW`ejm prrotrs+~}#zww\akokgbZ2hAqWaejm pp/}px!y!yuwow x xp[iokgbZ2hAqWaejm po7,y"qmmnmkigc_[Q=l^ JW[_ceghh&rHeu~xkR0xhhhfc`\XR"X%ZxOTX\_bbeBrzR#jbb`]YUO VR|PPUX\]#gL^-o^\ZVRIAmwHPLRUW^P}~~~~~~~~~~~~~b(fWUSO E_:f DNQSX+f8q?wAz@y=w9t5q2o/m.l,k+j*i*i)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)h)i)i*i*j+j-l/m1n4q8soKwWcin r!t!v!w!w"x!wvrpooqu!w"x"x"x"x"x"x"x"x"x!xvsqpqsu!w!w!w!v!u rojeZ7jFtXcjo r!u!v!w"xvt0^m;uv"y"y"y"y"y"y"y ws.WszqO,~sv!w!w!u soke\4iDsXdjo r!u!w!ws(|+s"y"y"y"y"yuv ws!w!u s pke\3iDsYdjo r!u!wr=Cs"y"y"yu06q!v!r pkf\2iCsYdjo r!ur?Ht#yv39r!s plf\2iBsYdjo rs%y.u x$xr plf\2hBsYejo rn kt~m plf]2hArZejoq%w6&wolf]1hArZejonI#yrtn%{v0Ollf]1hArZejomg0t"y wquv xs.rilf]1hArZekoks x x"y"yop"y"y"yohlf]1hArZdkolm%{ x"y"yskp"y"y"ypxilf]1hArZdkolc.w"y"yw4p"y"y"ypajlf]1hArZdkonHTs"y"y"yuUxr"y"y"yo8mlf]1hArZdkoq*zr"y"y"y"ytw%{%{%{%{%{%{%{%{%{#z"y"y"y!xqnplf]1hArZdko rpOr"y"y"y"y x x x x x x x x x x!x"y"y!yq^Eo plf]1hArZdko roZ0t"y"y"y"y"y"y"y"y"y"y"y"y"y"y"y!x!y?o plf]1hArZdko rs&y:pw!x"y"y"y"y"y"y"y"y"y"y"y"y"yum plf]1hArZdko rok3tpqqqqqqqsw"y"y"y xw#uolf]1hArZdkor!uxxxxxyyc'|w"y"y"yqj<mlf]1hArZekooC#zvvn*~w"y"yw1_jlf]1h@qZejold.t!x!xopr"y"y"ystilf]1hArZejokp"y x"y"ypo"y"y"yo~hlf]1hArZejokl#yw"y"yop"y"y!xr}hlf]1hArZejomTzoqoF5pun]ijlf]1hArZejop/}k^eFw>mlf]1hArYdjo rooqplf]1hBrYdjo rq