var BusinessCard=new Class({Extends:ModalWindow,initialize:function(A){this.width=500;this.height=398;this.parent(A)},prepareContainer:function(){this.element.getElement("DIV.content-container").grab(new Element("DIV",{id:"business-card-container"}));$("business-card-container").grab(new Element("DIV",{"class":"loading",text:Resources.Loading}))},windowDisplayed:function(){this.createFlashControl.delay(100,this)},createFlashControl:function(){var A={file:Resources.URL.Downloads+"/BusinessCard.flv",autoStart:"true"};var B={wmode:"transparent",bgcolor:"#000000",allowScriptAccess:"sameDomain",allowFullScreen:"true"};swfobject.embedSWF(Resources.URL.Flash+"/FLVScrubber.swf","business-card-container","480","360","9.0.0",Resources.URL.Flash+"/expressInstall.swf",A,B)},destroyFlashControl:function(){this.element.getElement("DIV.content-container").empty()},closed:function(){this.destroyFlashControl()}});window.addEvent("domready",function(){var B=$("businessCardLink");var C=$("businessCard");if($defined(B)&&$defined(C)){var A=new BusinessCard(C);B.addEvent("click",function(D){D=new Event(D).stop();A.display(D.page)})}});
