/* Metacafe Copyright - http://www.metacafe.com/ */
/* Files included: _BrandedContainer.js.tmp swfobject.js.tmp FaderOverlay.js.tmp s2f.js.tmp */

var ChannelSubscribe=new Class({initialize:function(subscribed,userPageID){this.subscribed=subscribed?subscribed:false;this.userPageID=userPageID;this.subscribeButton=$('Subscribe')?$('Subscribe'):$('Unsubscribe');var id=!this.subscribed?'Subscribe':'Unsubscribe';this.subscribeButton.set('id',id);this.subscribeButton.addEvent('click',this.onChannelSubscribe.bind(this));},onChannelSubscribe:function(e){var ev=new Event(e).preventDefault();var url=this.subscribed?'/index.php?inputType=unsubscribeFromUserPage&pageToLoad=controllerResponse':'/index.php?inputType=subscribeToUserPage&pageToLoad=controllerResponse';var subscribeRequest=new Request({url:url,method:'post',data:"userPageID="+this.userPageID,onSuccess:this.doChannelSubscribe.bind(this)}).send();},doChannelSubscribe:function(response){var ajaxResponse=JSON.decode(response);switch(ajaxResponse.responseValue.toInt()){case 2:if(confirm('You need to sign in to subscribe to this channel.\nClick "OK" to sign in\nClick "Cancel" to continue without subscribing')){window.location="/account/login/?action=subscribe";}
break;case 1:this.subscribed=!this.subscribed;this.updateStatus();break;case 3:alert("The member has blocked you from Subscribing");break;default:alert(ajaxResponse.responseText);break;}},updateStatus:function(){var className=this.subscribed?'IsSubscribed':'IsUnsubscribed';var html=this.subscribed?'Updates will appear on your channel':'Subscription Cancelled';if(!$('SubscriptionStatus')){var span=new Element('span',{'id':'SubscriptionStatus','class':className}).set('opacity',0).set('html',html).injectAfter($('UtilityLinks'));}else{$('SubscriptionStatus').className=className;$('SubscriptionStatus').set('html',html);}
this.faderFx=new Fx.Tween($('SubscriptionStatus'),{onStart:Events.prototype.clearChain,property:'opacity',duration:300,link:'cancel',onComplete:this.onFxComplete.bind(this)});this.faderFx.start(1);},onFxComplete:function(){if($('SubscriptionStatus').getStyle('visibility')=='visible'){var fadeOut=function(){this.faderFx.start(0);}.bind(this);fadeOut.delay(3000);}
var id=!this.subscribed?'Subscribe':'Unsubscribe';this.subscribeButton.set('id',id);}});var BrandedContainer=new Class({initialize:function(options){this.options=options;var d=$('Details');if(d!==null){$ES('a.Toggler').addEvent('click',function(e){var ev=new Event(e).preventDefault();$('Details').toggleClass('SectionDetails');});}
this.initUtilityBar();this.initChannelSubmit();},initUtilityBar:function(){if($('SendChannel')){var channel=$('ChannelSearchForm').get('action').match(/\/([\w\-_]+)\/tags\//)||null;if(channel){var url="mailto:?subject=You've got to see this&body=http://"+self.location.hostname+"/"+channel[1]+"/";$('SendChannel').set('href',url);}}
if($('Unsubscribe')||$('Subscribe')){this.channelSubscribe=new ChannelSubscribe(this.options.subscribed,this.options.userPageID);}
if($('ChannelSearchForm')){$('ChannelSearchForm').addEvent('submit',function(e){e.preventDefault();top.location.href=this.options.channelURL+'tags/'+createSearchString('ChannelSearchField')+'/';return false;}.bindWithEvent(this));}
if($('UserChannelsCombo')){$E('select','UserChannelsCombo').addEvent('change',function(e){document.location=encodeURI(this.value);});}},injectS2F:function(response){this.div=new Element('div',{'id':'S2FResponse'}).set('html',response).injectInside(document.body);this.faderObj=new FaderOverlay({targetId:'S2FResponse',openerId:$('SendChannel'),closerId:$ES('.CloseHandler',this.div),initialState:'open',animate:false});this.sendToFriend=new SendToFriend({'userPageID':this.options.userPageID,'wrapper':$('S2FResponse')});iOmnitureMC.hookClickReports();},initChannelSubmit:function(){if(!$('ItemSubmitButton')){return;}
if($('SectionSelector')){if($('SectionSelector').value===0){$('ItemSubmitButton').disabled=true;$('ItemSubmitButtonWrap').addClass('Disabled');}
$('SectionSelector').addEvent('change',function(e){if(this.value=='0'){$('ItemSubmitButton').disabled=true;if(!$('ItemSubmitButtonWrap').hasClass('Disabled')){$('ItemSubmitButtonWrap').addClass('Disabled');}}else{$('ItemSubmitButton').disabled=false;if($('ItemSubmitButtonWrap').hasClass('Disabled')){$('ItemSubmitButtonWrap').removeClass('Disabled');}}});}}});
var FaderOverlay=new Class({initialize:function(params){this.visible=false;this.targetId=params.targetId;this.openerId=params.openerId;this.closerId=params.closerId!=undefined?params.closerId:params.targetId;this.fadeAmount=params.fadeAmount!=undefined?params.fadeAmount/100:0.5;this.animate=params.animate!=undefined?params.animate:false;this.initialState=params.initialState!=undefined?params.initialState:false;this.isIE6=Browser.Engine.trident4;if(params.hasBackground!=null)
this.hasBackground=params.hasBackground;else
this.hasBackground=true;if($(this.targetId)){if(!$('fadeOverlay')){this.fadeOverlay=new Element('div',{'id':'fadeOverlay','styles':{'position':'absolute','top':'0px','left':'0px','background':'#000','display':'block','visibility':'hidden','z-index':'999998'}}).injectInside($E('body'));if(navigator.userAgent.indexOf('Firefox')!=-1&&navigator.userAgent.indexOf('Mac')!=-1){this.fadeOverlay.setStyles({'background':'none','background-image':'url(/Images/FaderOverlayBG.png)'});}else{this.fadeOverlay.set('opacity',this.fadeAmount)}
if(!this.hasBackground)
{this.fadeOverlay.set('opacity',0);}}else this.fadeOverlay=$('fadeOverlay');$(this.targetId).setStyles({'position':'absolute','top':'0px','left':'0px','display':'block','visibility':'hidden','z-index':'999999'}).injectAfter(this.fadeOverlay);this.targetElementSize=$(this.targetId).getCoordinates();if(this.animate){this.effects=new Fx.Morph([$(this.targetId),this.fadeOverlay],{duration:500,transition:Fx.Transitions.Sine.easeInOut,onStart:this.onEffectStart.bind(this),onComplete:this.onEffectEnd.bind(this)});this.openerCoords=$(this.openerId).getCoordinates();}
window.addEvent('resize',this.centerOnOverlay.bind(this));if(typeof this.closerId=='string')$(this.closerId).addEvent('click',this.onFaderState.bindWithEvent(this,false));else if(typeof this.closerId=='object'){this.closerId.each(function(id){$(id).addEvent('click',this.onFaderState.bindWithEvent(this,[false]));}.bind(this));}
if(typeof this.openerId.each!='function')$(this.openerId).addEvent('click',this.onFaderState.bindWithEvent(this,true));else if(typeof this.openerId.each=='function'){this.openerId.each(function(id){$(id).addEvent('click',this.onFaderState.bindWithEvent(this,[true]));}.bind(this));}
if(this.initialState=='open'){this.togglePageFader(true,false);}}else{return false;}},getPageSize:function(){var windowSize=window.getSize();this.pageHeight=window.getScrollSize().y+$E('body').getStyle('margin-top').toInt();this.pageWidth=windowSize.x+$E('body').getStyle('margin-left').toInt();this.absPosLeft=Math.round((windowSize.x-this.targetElementSize.width)/2);this.absPosTop=Math.round((windowSize.y-this.targetElementSize.height)/2+document.getScroll().y);if(this.absPosTop<0)this.absPosTop=0;if($(this.openerId))this.openerCoords=$(this.openerId).getCoordinates();},centerOnOverlay:function(e,overrideVisibility){if(this.visible||overrideVisibility){this.getPageSize();$(this.targetId).setStyles({top:this.absPosTop+'px',left:this.absPosLeft+'px'});this.fadeOverlay.setStyles({width:this.pageWidth+'px',height:this.pageHeight+35+'px'});}},onFaderState:function(e,state){(new Event(e)).preventDefault();this.togglePageFader(state,this.animate);},togglePageFader:function(state,animate){if(state){this.visible=true;this.centerOnOverlay();if(animate){this.animateTargetIn();}else{this.fadeOverlay.setStyles({'visibility':'visible','display':'block','z-index':'999998'});(function(){$(this.targetId).setStyles({'visibility':'visible','display':'block','z-index':'999999'})}.bind(this)).delay(100);}
if(this.isIE6){$ES('select').setStyle('visibility','hidden');$ES('select',this.targetId).setStyle('visibility','visible');}
$ES('iframe').setStyle('visibility','hidden');}else{this.visible=false;if(animate){this.animateTargetOut();}else{$(this.targetId).setStyles({'visibility':'hidden','display':'none'});(function(){this.fadeOverlay.setStyles({'visibility':'hidden','display':'none','z-index':'-1'})}.bind(this)).delay(100);}
if(this.isIE6)$ES('select').setStyle('visibility','visible');$ES('iframe').setStyle('visibility','visible');}},onEffectStart:function(){if(this.visible){$(this.targetId).setStyles({'visibility':'visible','width':'0px','height':'0px','overflow':'hidden'});this.fadeOverlay.setStyle('visibility','visible');}else{$(this.targetId).setStyle('overflow','hidden');this.fadeOverlay.setStyle('visibility','hidden');}},onEffectEnd:function(){if(!this.visible){$(this.targetId).setStyle('visibility','hidden');}else{$(this.targetId).setStyle('overflow','visible');}},animateTargetIn:function(){this.effects.start({'width':[0,this.targetElementSize.width],'height':[0,this.targetElementSize.height],'top':[this.openerCoords.top,this.absPosTop],'left':[this.openerCoords.left,this.absPosLeft]});},animateTargetOut:function(){this.effects.start({'width':[this.targetElementSize.width,0],'height':[this.targetElementSize.height,0],'top':[this.absPosTop,this.openerCoords.top],'left':[this.absPosLeft,this.openerCoords.left]});}});
var SendToFriend=new Class({options:{'itemID':null,'userPageID':null,'sendCountEver':0},initialize:function(options){this.setOptions(options);this.wrapperID=this.options.wrapper.getProperty('id');this.form=$E('form',this.wrapperID);this.fieldCounter=1;this.sendCount=1;if(isNaN(this.options.sendCountEver))this.options.sendCountEver=1;this.currentMailField=$E('.SendToFriend form span',this.wrapperID);this.firstSend=true;this.recipientField=$E('.RecipientField',this.wrapperID);this.senderField=$E('.SenderEmail',this.wrapperID);this.senderField.addEvent('focus',this.cleanSenderEmailValue.bind(this));this.senderField.addEvent('blur',this.checkSenderEmailValue.bind(this));$E('.SendToFriend a.AddRecipientField',this.wrapperID).addEvent('click',this.addEmailField.bind(this));$E('.AddRecipientField',this.wrapperID).addEvent('mouseover',function(e){$E('.AddRecipientField small',this.wrapperID).setStyle('display','block');}).addEvent('mouseout',function(e){$E('.AddRecipientField small',this.wrapperID).setStyle('display','none');});$E('.SendS2F',this.wrapperID).addEvent('click',this.sendEmail.bind(this));$E('.CancelS2F',this.wrapperID).addEvent('click',this.resetForm.bind(this));$E('.SendToFriend .CloseBoxButton',this.wrapperID).addEvent('click',this.resetForm.bind(this));},addEmailField:function(e){this.options.wrapper.setStyle('height','auto');(new Event(e)).preventDefault();this.fieldCounter++;var label=new Element('label',{'for':'RecipientField'+this.fieldCounter,'class':'Removable'}).set('html',"Friends Email "+this.fieldCounter);var input=new Element('input',{'type':'text','class':'InputField EmailAddress Removable','id':'RecipientField'+this.fieldCounter,'name':'recipients['+this.fieldCounter+'][email]'});label.injectAfter(this.currentMailField);input.injectAfter(label);this.currentMailField=input;},cleanSenderEmailValue:function(){if(this.senderField.value=='Optional')
this.senderField.value='';},checkSenderEmailValue:function(){if(this.senderField.value=='')
this.senderField.value='Optional';},validateForm:function(){$ES('.ErrorMsg').each(function(el){el.dispose();});var status=true;var fields=$ES('input',this.wrapperID);fields.each(function(el){if(el.type=='text'){var val=el.value.trim();var label=el.getPrevious();while(label.nodeName!='LABEL'){label=label.getPrevious();}
if(el.hasClass('RecipientField')&&val.length==0){var small=new Element('small',{'class':'ErrorMsg','styles':{'visibility':'hidden'}}).set('html','Email Address Required').injectInside(label);status=false;}
if(val.length>0&&el.hasClass('EmailAddress')){if((el.hasClass('SenderEmail')&&val!='Optional'&&val.length>0&&!val.match(/^([\w\.\-]+)\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/))||(!el.hasClass('SenderEmail')&&val.length>0&&!val.match(/^([\w\.\-]+)\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/))){var small=new Element('small',{'class':'ErrorMsg','styles':{'visibility':'hidden'}}).set('html','Invalid Email Address').injectInside(label);status=false;}}else if(val.length==0&&!el.hasClass('EmailAddress')){var small=new Element('small',{'class':'ErrorMsg','styles':{'visibility':'hidden'}}).set('html','Field Cannot Be Empty').injectInside(label);status=false;}}});$ES('.ErrorMsg').each(function(el){this.fadeMsg(el);}.bind(this));return status;},sendEmail:function(e){(new Event(e)).preventDefault();if(this.validateForm()){var postBody=this.form.toHash();postBody.comment=escape(postBody.comment);if(postBody.senderEmail=='Optional')postBody.senderEmail='';postBody.itemID=this.options.itemID;postBody.userPageID=this.options.userPageID;postBody.count=this.sendCount;postBody.countEver=this.options.sendCountEver;if($E('.SubmitButtons small.SendStatus',this.wrapperID))this.statusEl=$E('.SendStatus',this.wrapperID);this.statusEl=new Element('small',{'class':'SendStatus','styles':{'visibility':'hidden'}}).injectInside($E('.SubmitButtons',this.wrapperID));this.cookiesToSet='senderName,'+postBody.senderName+',senderEmail,'+postBody.senderEmail+',comment,'+postBody.comment+',fwdCounterEver,'+(this.sendCountEver+1);var url=getFullURL("/send_to_friend.php?sid="+sid);var s2fAjax=new Request({url:url,method:'post',data:Object.toQueryString(postBody),onFailure:function(){this.statusEl.addClass('ErrorMsg').set('html','Message not sent!');this.fadeMsg(this.statusEl);}.bind(this),onComplete:this.onSendEmail.bind(this)}).send();}},onSendEmail:function(response){if(response==''){this.statusEl.removeClass('ErrorMsg').addClass('SuccessMsg').set('html','Message sent successfully!')
this.fadeMsg(this.statusEl);setCookies(this.cookiesToSet);this.options.sendCountEver++;this.sendCount++;this.reportStats();(function(){this.resetForm('change');}.bind(this)).delay(1500);}else{this.statusEl.addClass('ErrorMsg').set('html','Message not sent!');this.fadeMsg(this.statusEl);}},fadeMsg:function(el){this.faderFx=new Fx.Tween(el,{onStart:Events.prototype.clearChain,property:'opacity',duration:1000,link:'cancel'}).set(0).start(1);},reportStats:function(){iOmnitureMC.report({'events':'event2, event75'},'Item');if(!this.firstSend)iOmnitureMC.report({'events':'More S2F'},'Item');var url=getFullURL('/reportPIR.php?itemID='+this.options.itemID+'&pirID=1'+'&sID='+sid);var reportPIR=new Request({url:url,method:'get'}).send();if(this.firstSend)this.firstSend=false;},resetForm:function(buttonState){$ES('.Removable',this.wrapperID).each(function(el){el.dispose();});$ES('.ErrorMsg',this.wrapperID).each(function(el){el.dispose();});this.recipientField.value='';if(buttonState=='change'){$E('.SendS2F span',this.wrapperID).setStyle('background-position','0px -104px');$E('.CancelS2F span',this.wrapperID).setStyle('background-position','0px -338px');}else{$E('.SendS2F span',this.wrapperID).setStyle('background-position','0px -26px');$E('.CancelS2F span',this.wrapperID).setStyle('background-position','0px -234px');$ES('.SuccessMsg',this.wrapperID).each(function(el){el.dispose();});}
this.currentMailField=$E('.SendToFriend form span',this.wrapperID);this.fieldCounter=1;}});SendToFriend.implement(new Options);
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(_1,id,w,h,_5,c,_7,_8,_9,_a){if(!document.getElementById){return;}this.DETECT_KEY=_a?_a:"detectflash";this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);this.params=new Object();this.variables=new Object();this.attributes=new Array();if(_1){this.setAttribute("swf",_1);}if(id){this.setAttribute("id",id);}if(w){this.setAttribute("width",w);}if(h){this.setAttribute("height",h);}if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion();if(!window.opera&&document.all&&this.installedVer.major>7){deconcept.SWFObject.doPrepUnload=true;}if(c){this.addParam("bgcolor",c);}var q=_7?_7:"high";this.addParam("quality",q);this.setAttribute("useExpressInstall",false);this.setAttribute("doExpressInstall",false);var _c=(_8)?_8:window.location;this.setAttribute("xiRedirectUrl",_c);this.setAttribute("redirectUrl","");if(_9){this.setAttribute("redirectUrl",_9);}};deconcept.SWFObject.prototype={useExpressInstall:function(_d){this.xiSWFPath=!_d?"expressinstall.swf":_d;this.setAttribute("useExpressInstall",true);},setAttribute:function(_e,_f){this.attributes[_e]=_f;},getAttribute:function(_10){return this.attributes[_10];},addParam:function(_11,_12){this.params[_11]=_12;},getParams:function(){return this.params;},addVariable:function(_13,_14){this.variables[_13]=_14;},getVariable:function(_15){return this.variables[_15];},getVariables:function(){return this.variables;},getVariablePairs:function(){var _16=new Array();var key;var _18=this.getVariables();for(key in _18){_16[_16.length]=key+"="+_18[key];}return _16;},getSWFHTML:function(){var _19="";if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");this.setAttribute("swf",this.xiSWFPath);}_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\"";_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";var _1a=this.getParams();for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}var _1c=this.getVariablePairs().join("&");if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}_19+="/>";}else{if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");this.setAttribute("swf",this.xiSWFPath);}_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\" style=\""+this.getAttribute("style")+"\">";_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";var _1d=this.getParams();for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}var _1f=this.getVariablePairs().join("&");if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}_19+="</object>";}return _19;},write:function(_20){if(this.getAttribute("useExpressInstall")){var _21=new deconcept.PlayerVersion([6,0,65]);if(this.installedVer.versionIsValid(_21)&&!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 _20=="string")?document.getElementById(_20):_20;n.innerHTML=this.getSWFHTML();return true;}else{if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}return false;}};deconcept.SWFObjectUtil.getPlayerVersion=function(){var _23=new deconcept.PlayerVersion([0,0,0]);if(navigator.plugins&&navigator.mimeTypes.length){var x=navigator.plugins["Shockwave Flash"];if(x&&x.description){_23=new deconcept.PlayerVersion(x.description.replace(/([a-zA-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}}else{if(navigator.userAgent&&navigator.userAgent.indexOf("Windows CE")>=0){var axo=1;var _26=3;while(axo){try{_26++;axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+_26);_23=new deconcept.PlayerVersion([_26,0,0]);}catch(e){axo=null;}}}else{try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");}catch(e){try{var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");_23=new deconcept.PlayerVersion([6,0,21]);axo.AllowScriptAccess="always";}catch(e){if(_23.major==6){return _23;}}try{axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");}catch(e){}}if(axo!=null){_23=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}}}return _23;};deconcept.PlayerVersion=function(_29){this.major=_29[0]!=null?parseInt(_29[0]):0;this.minor=_29[1]!=null?parseInt(_29[1]):0;this.rev=_29[2]!=null?parseInt(_29[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;};deconcept.util={getRequestParameter:function(_2b){var q=document.location.search||document.location.hash;if(_2b==null){return q;}if(q){var _2d=q.substring(1).split("&");for(var i=0;i<_2d.length;i++){if(_2d[i].substring(0,_2d[i].indexOf("="))==_2b){return _2d[i].substring((_2d[i].indexOf("=")+1));}}}return"";}};deconcept.SWFObjectUtil.cleanupSWFs=function(){var _2f=document.getElementsByTagName("OBJECT");for(var i=_2f.length-1;i>=0;i--){_2f[i].style.display="none";for(var x in _2f[i]){if(typeof _2f[i][x]=="function"){_2f[i][x]=function(){};}}}};if(deconcept.SWFObject.doPrepUnload){if(!deconcept.unloadSet){deconcept.SWFObjectUtil.prepUnload=function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){};window.attachEvent("onunload",deconcept.SWFObjectUtil.cleanupSWFs);};window.attachEvent("onbeforeunload",deconcept.SWFObjectUtil.prepUnload);deconcept.unloadSet=true;}}if(!document.getElementById&&document.all){document.getElementById=function(id){return document.all[id];};}var getQueryParamValue=deconcept.util.getRequestParameter;var FlashObject=deconcept.SWFObject;var SWFObject=deconcept.SWFObject;