// CODA 2.0.284 dated 03-Dec-2009 Thu 04:18 PM

var mtvn=typeof mtvn==='object'?mtvn:{};mtvn.btg=typeof mtvn.btg==='object'?mtvn.btg:{};mtvn.btg.config=typeof mtvn.btg.config==='object'?mtvn.btg.config:{};mtvn.btg.ads=typeof mtvn.btg.ads==='object'?mtvn.btg.ads:{};mtvn.btg.reporting=typeof mtvn.btg.reporting==='object'?mtvn.btg.reporting:{};mtvn.btg.reporting.omniture=typeof mtvn.btg.reporting.omniture==='object'?mtvn.btg.reporting.omniture:{};mtvn.btg.util=typeof mtvn.btg.util==='object'?mtvn.btg.util:{};mtvn.btg.globalvars=typeof mtvn.btg.globalvars==='object'?mtvn.btg.globalvars:{};mtvn.btg.globalvars={IS_TOP_ACCESSIBLE:function(){try{return(typeof top.location.search!='unknown');}catch(e){return false;}}(),PAGE_URL:function(){try{var retVal='';retVal=self.location.pathname;if(retVal=='')retVal='/';return retVal;}catch(e){}}(),IS_UNIT_TEST:function(){try{return(location.href.toLowerCase().indexOf("/api/jsunittest/tests/")!=-1);}catch(e){return false}}()};mtvn.btg.Controller=new function(){var hasReporting=false;var hasAds=false;var reportingData;var adsData;var defaultPageName="";this.init=function(){defaultPageName=(mtvn.btg.globalvars.PAGE_URL!="/"?mtvn.btg.util.String.charTrim(mtvn.btg.globalvars.PAGE_URL,'/'):mtvn.btg.globalvars.PAGE_URL);if(defaultPageName.charAt(defaultPageName.length-1)=="/"||!mtvn.btg.util.String.isDefined(defaultPageName)){defaultPageName+=typeof mtvn.btg.config.ReportSettings.indexFileName=="string"?mtvn.btg.config.ReportSettings.indexFileName:"index";}
if(mtvn.btg.config.ReportSettings){mtvn.btg.config.ReportSettings.defaultPageName=defaultPageName;mtvn.btg.reporting.ReportingManager.init();hasReporting=true;}
if(mtvn.btg.config.AdSettings){mtvn.btg.config.AdSettings.defaultPageName=defaultPageName;mtvn.btg.ads.AdManager.init();hasAds=true;}
return true;};this.sendPageCall=function(data){if(hasReporting){mtvn.btg.reporting.ReportingManager.sendPageCall(data);reportingData=mtvn.btg.reporting.ReportingManager.getData();}};this.sendLinkEvent=function(data){if(hasReporting){mtvn.btg.reporting.ReportingManager.sendLinkEvent(data);}};this.placeAd=function(data){if(hasAds){mtvn.btg.ads.AdManager.placeAd(data);adsData=mtvn.btg.ads.AdManager.getData();}};this.getAdUrl=function(data){if(hasAds){return mtvn.btg.ads.AdManager.getAdUrl(data);}};};mtvn.btg.util.Beacon=function(url){this.url=url;this.data=null;};mtvn.btg.util.Beacon.prototype={setData:function(data){this.data=mtvn.btg.util.Object.toString(data,'&');},formatSrc:function(){if(this.data){if(this.url.indexOf('?')>-1){this.url+='&'+this.data;}else{this.url+='?'+this.data;}}
return this.url;},send:function(){var http=new Image(1,1);http.src=this.formatSrc();http.onload=function(){return;};http.onabort=function(){return;};http.onerror=function(){return;};}};mtvn.btg.util.Cookie={read:function(name){var name=name+"=";var ca=document.cookie.split(';');for(var i=0;i<ca.length;i++){var c=ca[i];while(c.charAt(0)==' '){c=c.substring(1,c.length)};if(c.indexOf(name)==0){return c.substring(name.length,c.length)};}
return null;},set:function(name,value,expy){var cookie=name+"="+value+"; path=/";if(expy)cookie+=";expires="+expy;document.cookie=cookie;},remove:function(name){document.cookie=name+'=;expires=Thu, 01-Jan-1970 00:00:01 GMT;path=/';}};mtvn.btg.util.Events={addListener:function(obj,type,fn){if(obj.attachEvent)
obj.attachEvent('on'+type,fn);else if(obj.addEventListener)
obj.addEventListener(type,fn,false);else obj['on'+type]=fn;},removeListener:function(obj,type,fn){if(obj.detachEvent)
obj.detachEvent('on'+type,fn);else if(obj.removeEventListener)
obj.removeEventListener(type,fn,false);else obj['on'+type]=null;}}
if(!this.mtvn.btg.util.JSON){mtvn.btg.util.JSON=function(){function f(n){return n<10?'0'+n:n;}
Date.prototype.toJSON=function(){return this.getUTCFullYear()+'-'+
f(this.getUTCMonth()+1)+'-'+
f(this.getUTCDate())+'T'+
f(this.getUTCHours())+':'+
f(this.getUTCMinutes())+':'+
f(this.getUTCSeconds())+'Z';};var m={'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','"':'\\"','\\':'\\\\'};function stringify(value,whitelist){var a,i,k,l,r=/["\\\x00-\x1f\x7f-\x9f]/g,v;switch(typeof value){case'string':return r.test(value)?'"'+value.replace(r,function(a){var c=m[a];if(c){return c;}
c=a.charCodeAt();return'\\u00'+Math.floor(c/16).toString(16)+
(c%16).toString(16);})+'"':'"'+value+'"';case'number':return isFinite(value)?String(value):'null';case'boolean':case'null':return String(value);case'object':if(!value){return'null';}
if(typeof value.toJSON==='function'){return stringify(value.toJSON());}
a=[];if(typeof value.length==='number'&&!(value.propertyIsEnumerable('length'))){l=value.length;for(i=0;i<l;i+=1){a.push(stringify(value[i],whitelist)||'null');}
return'['+a.join(',')+']';}
if(whitelist){l=whitelist.length;for(i=0;i<l;i+=1){k=whitelist[i];if(typeof k==='string'){v=stringify(value[k],whitelist);if(v){a.push(stringify(k)+':'+v);}}}}else{for(k in value){if(typeof k==='string'){v=stringify(value[k],whitelist);if(v){a.push(stringify(k)+':'+v);}}}}
return'{'+a.join(',')+'}';}}
return{stringify:stringify,parse:function(text,filter){var j;function walk(k,v){var i,n;if(v&&typeof v==='object'){for(i in v){if(Object.prototype.hasOwnProperty.apply(v,[i])){n=walk(i,v[i]);if(n!==undefined){v[i]=n;}}}}
return filter(k,v);}
if(/^[\],:{}\s]*$/.test(text.replace(/\\./g,'@').replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(:?[eE][+\-]?\d+)?/g,']').replace(/(?:^|:|,)(?:\s*\[)+/g,''))){j=eval('('+text+')');return typeof filter==='function'?walk('',j):j;}
throw new SyntaxError('parseJSON');}};}();}
mtvn.btg.util.Math={random:function(){var min;var max;if(arguments.length>1){min=arguments[0];max=arguments[1];}else{min=0;max=arguments[0];}
return Math.floor(Math.random()*(max-min+1)+min);}};mtvn.btg.util.Object={isDefined:function(object){return typeof object=="object"?true:false;},toString:function(object,delimiter){var delimiter=delimiter?delimiter:',';var array=[];for(var i in object){if(mtvn.btg.util.String.isDefined(object[i])){array.push(i+"="+object[i]);}}
return array.join(delimiter);},copyProperties:function(a_sourceObj,a_destinationObj,a_forceOverwrite){if(this.isDefined(a_sourceObj)&&this.isDefined(a_destinationObj)){for(var i in a_sourceObj){if(this.isDefined(a_destinationObj[i])||mtvn.btg.util.String.isDefined(a_destinationObj[i])){if(a_forceOverwrite=="forceOverwrite")a_destinationObj[i]=a_sourceObj[i];}
else{a_destinationObj[i]=a_sourceObj[i];}}}}};mtvn.btg.util.Sections={getAdSections:function(){var retVal=self.location.pathname;if(retVal=='')retVal='/';if(retVal.lastIndexOf("/")==(retVal.length-1)){retVal+=(mtvn.btg.util.Object.isDefined(mtvn.btg.config.AdSettings)&&mtvn.btg.util.String.isDefined(mtvn.btg.config.AdSettings.defaultIndexFileName))?mtvn.btg.config.AdSettings.defaultIndexFileName:"index";}
if(retVal!='/'&&retVal.indexOf('/')==0)retVal=retVal.substring(1);return retVal;},getReportingSections:function(){return self.location.pathname;}};mtvn.btg.util.Session={Variables:{config:[],add:function(config){if(typeof config=="undefined")return false;for(var c1=0;c1<this.config.length;c1++){if(typeof this.config[c1].varName!="string")continue;for(var c2=0;c2<config.length;c2++){if(typeof config[c2].varName!="string")continue;if(config[c2].varName==this.config[c1].varName)this.config.splice(c1,1);}}
this.config=this.config.concat(config);return true;},setData:function(data){if(!mtvn.btg.util.String.isDefined(data))return null;for(c=0;c<this.config.length;c++){var _config=this.config[c];if(typeof data[_config.varName]!="undefined"){data[_config.varName]=this.saveToCookie(_config,data[_config.varName]);}
else{var cookieName=mtvn.btg.util.String.isDefined(_config.cookieName)?_config.cookieName:"mtvn_btg_"+_config.varName;var cookie=mtvn.btg.util.Cookie.read(cookieName);if(mtvn.btg.util.String.isDefined(cookie)){cookie=cookie.replace(/\+/gim,";");data[_config.varName]=cookie;}}}
return data;},saveToCookie:function(config,value){if(typeof value=="string"&&typeof config.varName=="string"){value=value.replace(/\;/gim,"+");var varName=config.varName;var cookieName=typeof config.cookieName=="string"?config.cookieName:"mtvn_btg_"+varName;var neverDie=typeof config.neverDie=="boolean"?config.neverDie:0;var appendOnly=typeof config.appendOnly=="boolean"||typeof config.appendOnly=="number"?config.appendOnly:0;if(appendOnly){var cookie=mtvn.btg.util.Cookie.read(cookieName);if(mtvn.btg.util.String.isDefined(cookie)){values=value.split(",");for(v=0;v<values.length;v++){var current_value=values[v];if(!mtvn.btg.util.String.isDefined(current_value))continue;if(cookie.indexOf(current_value)>-1)continue;if(cookie.length>0)cookie+=",";cookie+=current_value;}
value=cookie;}}
var year=new Date().getYear();var expy=neverDie?"Thu, 01-Jan-"+(year+10)+" 23:59:59 GMT":null;mtvn.btg.util.Cookie.set(cookieName,value,expy);}
return mtvn.btg.util.String.isDefined(value)?value.replace(/\+/gim,";"):null;}}}
mtvn.btg.util.String={isDefined:function(value){if(typeof value==='undefined'||value===null||value==''||value==='undefined'){return false;}else{return true;}},random:function(length){var chars='ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz';var string='';length=length?length:8;for(var x=0;x<length;x++){var num=Math.floor(Math.random()*chars.length);string+=chars.substring(num,num+1);}
return string;},toObject:function(string,delimiter){var delimiter=delimiter?delimiter:',';var array=string.split(delimiter);var object={};for(var x=0;x<array.length;x++){var pairs=array[x].split('=');object[pairs[0]]=pairs[1];}
return object;},queryStringToObject:function(string){var string=string.indexOf('?')>-1?string.split('?')[1]:string;return this.toObject(string,'&');},stripFileExtension:function(string){var lastIndex=string.lastIndexOf('.');if(lastIndex>0){return string.substring(0,lastIndex);}else{return string;}},charLtrim:function(string,character){var trimIndex=string.indexOf(character)
if(trimIndex==0){string=string.substring(1);}
return string;},charRtrim:function(string,character){var trimIndex=string.lastIndexOf(character);var stringLength=string.length;if(trimIndex==stringLength-1){string=string.substring(0,stringLength-1);}
return string;},charTrim:function(string,character){string=this.charLtrim(string,character);string=this.charRtrim(string,character);return string;},mockItUp:function(string){string=string.replace(/[<]/g,"&lt;");string=string.replace(/[>]/g,"&gt;");return string;},getFileName:function(a_pathString){var retVal=(mtvn.btg.util.String.isDefined(a_pathString))?a_pathString:'';retVal=retVal.substring(retVal.lastIndexOf('/')+1);return retVal;}};mtvn.btg.util.Window={getNodeLinkName:function(node){var linkName=null;for(var x=0;x<node.childNodes.length;x++){var childnode=node.childNodes[x];switch(childnode.nodeType){case 3:linkName=childnode.nodeValue;break;case 1:if(node.attributes['title']&&node.attributes['title'].nodeValue!=''){linkName=node.attributes['title'].nodeValue;}else if(node.attributes['alt']&&node.attributes['alt'].nodeValue!=''){linkName=node.attributes['alt'].nodeValue;}
break;};}
return linkName;},debug:function(message){var debugElement=document.getElementById("debug");if(!debugElement){debugElement=document.createElement("div");debugElement.setAttribute("id","debug");document.getElementsByTagName("body")[0].appendChild(debugElement);}
debugElement.innerHTML=debugElement.innerHTML+message+"<br>";}};mtvn.btg.reporting.ComScore=function(config){var isDefined=mtvn.btg.util.String.isDefined;this.config=config;this.c1=(isDefined(this.config.c1))?this.config.c1:"2";this.c2=(isDefined(this.config.c2))?this.config.c2:"6036034";this.c3=(isDefined(this.config.c3))?this.config.c3:'';this.c4=(isDefined(this.config.c4))?this.config.c4:(mtvn.btg.util.Object.isDefined(mtvn.btg.util.Sections))?mtvn.btg.util.Sections.getReportingSections():(mtvn.btg.globalvars.IS_TOP_ACCESSIBLE)?escape(top.document.location.hostname+top.document.location.pathname):escape(document.location.hostname+document.location.pathname);this.c5=(isDefined(this.config.c5))?this.config.c5:'20000';this.c6=(isDefined(this.config.c6))?this.config.c6:'';this.c15=(isDefined(this.config.c15))?this.config.c15:'';};mtvn.btg.reporting.ComScore.prototype={sendPageCall:function(data){var isDefined=mtvn.btg.util.String.isDefined;if(typeof(data)==='object'){if(isDefined(data.comScore1))this.c1=data.comScore1;if(isDefined(data.comScore2))this.c2=data.comScore2;if(isDefined(data.comScore3))this.c3=data.comScore3;if(isDefined(data.comScore4))this.c4=data.comScore4;if(isDefined(data.comScore5))this.c5=data.comScore5;if(isDefined(data.comScore6))this.c6=data.comScore6;if(isDefined(data.comScore15))this.c15=data.comScore15;}
var cs_params=["c1=",this.c1,"&c2=",this.c2,"&c3=",this.c3,"&c4=",this.c4,"&c5=",this.c5,"&c6=",this.c6,"&c15=",this.c15].join('');try{if(typeof exposeTestFunctionNames=='undefined')document.write(unescape("%3Cscript src='"+(document.location.protocol=="https:"?"https://sb":"http://b")+".scorecardresearch.com/beacon.js?"+cs_params+"' %3E%3C/script%3E"));}catch(e){}}};mtvn.btg.reporting.FluxHosted={sendCall:function(){var _chkContextObjectExists=function(){if(typeof Flux!="object"||typeof Flux.Context!="object")return false;return true;};var _chkCommunityObjectsExist=function(){if(typeof FluxReporting!="object"||typeof FluxReporting.Standard!="object")return false;return true;};var _getMemberState=function(){if(!_chkContextObjectExists())return null;return Flux.Context.isCommunityMember()?"member":"non-member";};var _getLoginState=function(){if(!_chkContextObjectExists())return null;return Flux.Context.isUserAuthenticated()?"logged-in":"not logged-in";};var _mapVars=function(){var _data={};if(!_chkContextObjectExists()&&!_chkCommunityObjectsExist())return false;var pageName=location.pathname.substring(1);pageName=pageName=="/"||pageName==""?"main.aspx":pageName;pageName=pageName.substring(0,2)=='-/'?pageName.substring(2):pageName;var pathsToTrim=["/profile","/Topic"];for(i=0;i<pathsToTrim.length;i++){if(pageName.indexOf(pathsToTrim[i])>-1){pageName=pageName.substring(0,pageName.indexOf(pathsToTrim[i])+pathsToTrim[i].length);}}
_data["pageName"]=_data["hier1"]=pageName;if(_chkContextObjectExists()){_data["prop10"]=_data["eVar10"]=_getMemberState();_data["prop11"]=_data["eVar11"]=_getLoginState();};if(_chkCommunityObjectsExist()){_data["prop3"]=_data["eVar3"]=(mtvn.btg.util.String.isDefined(FluxReporting.Standard.Community_Name)?FluxReporting.Standard.Community_Name:null);_data["prop4"]=_data["eVar4"]=(mtvn.btg.util.String.isDefined(FluxReporting.Standard.Content_UCID)?FluxReporting.Standard.Content_UCID:null);_data["prop5"]=_data["eVar5"]=(mtvn.btg.util.String.isDefined(FluxReporting.Standard.Content_Title)?FluxReporting.Standard.Content_Title:null);_data["prop6"]=_data["eVar6"]=(mtvn.btg.util.String.isDefined(FluxReporting.Standard.Content_Section)?FluxReporting.Standard.Content_Section:null);_data["prop7"]=_data["eVar7"]=(mtvn.btg.util.String.isDefined(FluxReporting.Standard.Content_Page)?FluxReporting.Standard.Content_Page:null);_data["prop8"]=_data["eVar8"]=(mtvn.btg.util.String.isDefined(FluxReporting.Standard.Content_Details)?FluxReporting.Standard.Content_Details:null);_data["prop9"]=_data["eVar9"]=(mtvn.btg.util.String.isDefined(FluxReporting.Standard.Content_Subtype)?FluxReporting.Standard.Content_Subtype:null);};_data["prop12"]=_data["eVar12"]=location.host;if(typeof FluxReporting.Overrides!="undefined"){for(i in FluxReporting.Overrides){_data[i]=FluxReporting.Overrides[i];}}
return _data;};var data=_mapVars();var oldConfig=mtvn.btg.config.ReportSettings;mtvn.btg.config.ReportSettings={Omniture:{enabled:true,account:'viafluxrollup',dynamicAccountSelection:'true',dynamicAccountList:'viafluxrollupdev=mtv-d,mtv-q,mtvi.com',linkInternalFilters:'javascript:,flux.com,mtvi.com,'+location.hostname,trackExternalLinks:true,trackDownloadLinks:true,isFluxHosted:true}};mtvn.btg.Controller.init();mtvn.btg.Controller.sendPageCall(data);mtvn.btg.config.ReportSettings=oldConfig;return true;}};if(typeof FluxReporting!="undefined"){mtvn.btg.util.Events.addListener(window,"load",function(){mtvn.btg.reporting.FluxHosted.sendCall();})};mtvn.btg.reporting.FluxState=new function(){var _chkFluxVersion=function(){if(typeof Flux!="object"){return null;}
else if(typeof Flux.context=="object"&&typeof Flux.context.user=="object"){return 3;}
else if(typeof Flux.Context=="object"){return 2;}};var _getMemberState=function(){var fv=_chkFluxVersion();var memberState=null;switch(fv){case 3:memberState=Flux.context.user.communityMember;break;case 2:memberState=Flux.Context.isCommunityMember();break;}
return memberState?"member":"non-member";};var _getLoginState=function(){var fv=_chkFluxVersion();var loginState=null;switch(fv){case 3:if(Flux.context.user.facebookOnly)loginState="FB Only";if(Flux.context.user.facebookConnected)loginState="Flux + FB";if(typeof Flux.context.user.ucid=="string"&&Flux.context.user.ucid.length>0)loginState="Flux Only";else loginState="not logged-in";break;case 2:loginState=Flux.Context.isUserAuthenticated()?"logged-in":"not logged-in";break;}
return loginState;};this.setData=function(context,data){if(!_chkFluxVersion())return data;data[context.config.fluxVarMap.memberState]=_getMemberState();data[context.config.fluxVarMap.loginState]=_getLoginState();if(_getLoginState()=="logged-in")mtvn.btg.reporting.UserSegment.add(context,"LoggedIn");return data;};};mtvn.btg.reporting.GoogleAnalytics=function(config){this.config=config;if(config.reportMode=='iframe'){document.write(unescape("%3Cdiv id='btg_ga_div'%3E%3C/div%3E"));}else{var gaJsHost=(("https:"==document.location.protocol)?"https://ssl.":"http://www.");if(typeof exposeTestFunctionNames=='undefined')document.write(unescape("%3Cscript src='"+gaJsHost+"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));}
this.account=config.account;};mtvn.btg.reporting.GoogleAnalytics.prototype={sendPageCall:function(data){if(this.config.reportMode=='iframe'){var _div=document.getElementById("btg_ga_div");var _wl=window.location;var uri=data.pageName;var _uri=uri.substring(0,1)!="/"?"/"+uri:uri;var _refer=document.referrer;var _ga="//media.mtvnservices.com/metrics/ga.html?uri=";_refer="&ref="+escape(_refer);if(_div){var newChild=document.createElement("iframe");newChild.src=_wl.protocol+_ga+_wl.hostname+_uri+_refer;newChild.style.width=1+'px';newChild.style.height=1+'px';newChild.style.visibility='hidden';newChild.style.left=-50+'px';newChild.style.top=-50+'px';newChild.style.position='absolute';_div.appendChild(newChild);}}else{try
{if(typeof exposeTestFunctionNames=='undefined')document.write(unescape("%3Cscript type='text/javascript'%3E")+'var pageTracker = _gat._getTracker("'+this.account+'");pageTracker._trackPageview("'+data.pageName+'");'+unescape("%3C/script%3E"));}
catch(e){}}}};mtvn.btg.reporting.MediaPlayer={context:null,init:function(context){this.context=context;},players:[],addPlayer:function(id){this.players[id]=new this.Player(id);return this.players[id];},Player:function(id){var config=mtvn.btg.config.ReportSettings;this.id=id;this.lastGuid=null;this.swf=null;this.onLoaded=function(){this.swf=document.getElementById(this.id);this.swf.addEventListener('METADATA','mtvn.btg.reporting.MediaPlayer.players[\"'+this.id+'\"].onMetaData');};this.onMetaData=function(metadata){if(location.search.match(/showMetaData\=true/)){str="";for(m in metadata)str+=m+": "+metadata[m]+"\n";alert(this.lastGuid+"\n\n\n"+str);};var esCampaign="";var url=document.location.search;var isEndSlate=(url.toLowerCase().indexOf("xrs=mpes_")!=-1?true:false);if(isEndSlate){var paramArr=url.replace(/^\?/g,'').split("&");for(var i=0;i<paramArr.length;i++){if(paramArr[i].split('=')[0]=='xrs'){esCampaign=(mtvn.btg.util.String.isDefined(paramArr[i].split('=')[1])?paramArr[i].split('=')[1]:"");}}}
if(metadata["guid"]&&this.lastGuid!==metadata["guid"]){var _data={linkName:"Video View",linkType:"o",eVar28:metadata["contentType"],events:"event15",campaign:esCampaign};if(typeof mtvn.btg.reporting.UserSegment!="undefined"){mtvn.btg.reporting.UserSegment.add(mtvn.btg.reporting.MediaPlayer.context,"VideoViewer");}
if(typeof mtvn.btg.config.ReportSettings.Omniture.videoViewEventDisable!="undefined"&&mtvn.btg.config.ReportSettings.Omniture.videoViewEventDisable){_data.events="";}
mtvn.btg.Controller.sendLinkEvent(_data);};this.lastGuid=metadata["guid"];};this.onEndslateLoad=function(){var _data={linkName:"Endslate View",linkType:"o"};if(typeof mtvn.btg.reporting.UserSegment!="undefined"){mtvn.btg.reporting.UserSegment.add(mtvn.btg.reporting.MediaPlayer.context,"EndslateViewer");}
mtvn.btg.Controller.sendLinkEvent(_data);};},onWindowLoaded:function(e){var oldMtvnPlayerLoaded=window["mtvnPlayerLoaded"];var mtvnPlayerLoaded=function(id){if(typeof oldMtvnPlayerLoaded!="undefined")oldMtvnPlayerLoaded(id);if(typeof document.getElementById(id)=="undefined")return;mtvn.btg.reporting.MediaPlayer.addPlayer(id);mtvn.btg.reporting.MediaPlayer.players[id].onLoaded();};window["mtvnPlayerLoaded"]=mtvnPlayerLoaded;}};try{mtvn.btg.util.Events.addListener(window,"load",mtvn.btg.reporting.MediaPlayer.onWindowLoaded);}catch(e){}
mtvn.btg.reporting.Nielsen=function(config){var isDefined=mtvn.btg.util.String.isDefined;this.config=config;this.url="http://secure-us.imrworldwide.com/cgi-bin/m";};mtvn.btg.reporting.Nielsen.prototype={formatData:function(data){var retVal={};var isDefined=mtvn.btg.util.String.isDefined;this.ci=(isDefined(data.nielsen_cid))?data.nielsen_cid:(isDefined(this.config.cid))?this.config.cid:"";if(isDefined(this.ci)){retVal.ci=this.ci;retVal.cg=(isDefined(data.nielsen_content))?data.nielsen_content:(isDefined(this.config.content))?this.config.content:"0";retVal.ca=(isDefined(data.nielsen_campaign))?data.nielsen_campaign:(isDefined(this.config.campaign))?this.config.campaign:"";retVal.cr=(isDefined(data.nielsen_creative))?data.nielsen_creative:(isDefined(this.config.creative))?this.config.creative:"";retVal.ce=(isDefined(data.nielsen_execution))?data.nielsen_execution:(isDefined(this.config.execution))?this.config.execution:"";retVal.pc=(isDefined(data.nielsen_placement))?data.nielsen_placement:(isDefined(this.config.placement))?this.config.placement:"";retVal.rt=(isDefined(data.nielsen_result))?data.nielsen_result:(isDefined(this.config.result))?this.config.result:"";retVal.rf=(isDefined(data.nielsen_resultFlag))?data.nielsen_resultFlag:(isDefined(this.config.resultFlag))?this.config.resultFlag:"";retVal.rv=(isDefined(data.nielsen_revenue))?data.nielsen_revenue:(isDefined(this.config.revenue))?this.config.revenue:"";retVal.ou=(isDefined(data.nielsen_ownership))?data.nielsen_ownership:(isDefined(this.config.ownership))?this.config.ownership:"";retVal.sd=(isDefined(data.nielsen_streamDuration))?data.nielsen_streamDuration:(isDefined(this.config.streamDuration))?this.config.streamDuration:"";retVal.pg=(isDefined(data.nielsen_primaryGroup))?data.nielsen_primaryGroup:(isDefined(this.config.primaryGroup))?this.config.primaryGroup:"";retVal.si=(isDefined(data.nielsen_pageName))?data.nielsen_pageName:(isDefined(this.config.pageName))?this.config.pageName:document.location.href;retVal.rp=(isDefined(data.nielsen_referrer))?data.nielsen_referrer:(isDefined(this.config.referrer))?this.config.referrer:document.referrer;retVal.ss=(isDefined(data.nielsen_sampleSize))?data.nielsen_sampleSize:(isDefined(this.config.sampleSize))?this.config.sampleSize:"";retVal.sv=(isDefined(data.nielsen_survey))?data.nielsen_survey:(isDefined(this.config.survey))?this.config.survey:"";retVal.rnd=new Date().getTime();}
return retVal;},sendPageCall:function(data){var isDefined=mtvn.btg.util.String.isDefined;var beacon=new mtvn.btg.util.Beacon(this.url);beacon.setData(this.formatData(data));if(isDefined(this.ci))beacon.send();}};mtvn.btg.reporting.Omniture=function(config){this.pageViewEventSet=false;this.name="Omniture";this.values=[];this.newRepeatProp=mtvn.btg.util.String.isDefined(config.newRepeatProp)?config.newRepeatProp:"prop41";this.config=config;this.hcode=mtvn.btg.reporting.omniture.Hcode;this.hcode.setAccount(this.config.account);for(var i in this.config)this.hcode[i]=this.config[i];this.url="http"+(this.hcode.ssl?"s":"")+"://"+this.hcode.un+".112.2o7.net/b/ss/"+this.hcode.un+"/1/";if(typeof this.config.userSegmentVarMap=="undefined"){this.config.userSegmentVarMap={traffic:"prop31",commerce:"products"}
mtvn.btg.config.ReportSettings.Omniture.userSegmentVarMap=this.config.userSegmentVarMap;}
if(typeof mtvn.btg.reporting.UserSegment=="object")
mtvn.btg.reporting.UserSegment.init(this);if(typeof this.config.fluxVarMap=="undefined"){this.config.fluxVarMap={memberState:"prop5",loginState:"prop6"}
mtvn.btg.config.ReportSettings.Omniture.fluxVarMap=this.config.fluxVarMap;}
if(typeof this.config.timePartingVarMap=="undefined"){this.config.timePartingVarMap={trafficDay:"prop33",trafficHour:"prop34",commerceDay:"eVar45",commerceHour:"eVar46"}}
if(typeof this.config.ESIVarMap=="undefined"){this.config.ESIVarMap={asnum:"prop1",network:"prop2",proxy:"prop3",countryCode:"prop4"}}
if(typeof this.config.pageViewEvent!="string"){this.config.pageViewEvent="event16";};if(typeof mtvn.btg.reporting.Search=="object")
mtvn.btg.reporting.Search.init(this);if(typeof mtvn.btg.reporting.MediaPlayer=="object")
mtvn.btg.reporting.MediaPlayer.init(this);if(typeof this.config.sessionVars!="undefined")mtvn.btg.util.Session.Variables.add(this.config.sessionVars);};mtvn.btg.reporting.Omniture.prototype={setAttribute:function(k,v){if(mtvn.btg.util.String.isDefined(k)){this.hcode[k]=(mtvn.btg.util.String.isDefined(v)?v:'');return true;}
else{return false;}},getAttribute:function(k){return this.hcode[k];},setValues:function(data){for(var i in data){this.setAttribute(i,data[i]);this.values.push(i);}
return true;},clearValues:function(){for(x=0;x<this.values.length;x++){if(this.values[x]!="pageName"){this.setAttribute(this.values[x],"");}}
this.clearNewRepeat();this.values=this.getPageName()?["pageName"]:[];return true;},setNewRepeat:function(){this.setAttribute(this.newRepeatProp,this.hcode.getNewRepeat());return true;},clearNewRepeat:function(){this.setAttribute(this.newRepeatProp,"");return true;},getValOnce:function(v,c,e){return this.hcode.getValOnce(v,c,e);},getNewRepeat:function(){return this.hcode.getNewRepeat();},getPageName:function(){return this.getAttribute("pageName");},preprocessData:function(data){if(typeof mtvn.btg.reporting.UserSegment!="undefined"){data=mtvn.btg.reporting.UserSegment.setData(this,data);}
data=mtvn.btg.util.Session.Variables.setData(data);return data;},sendPageCall:function(data){data=typeof data!="object"?{}:data;if(typeof data.pageName!="string"||data.pageName==""){data.pageName=(mtvn.btg.util.String.isDefined(this.hcode.pageName)?this.hcode.pageName:mtvn.btg.config.ReportSettings.defaultPageName);}
if(typeof this.config.noPagenameSlash!="undefined"&&this.config.noPagenameSlash&&data.pageName.charAt(0)=="/"){data.pageName=data.pageName.substring(0);}
if(typeof this.config.defaultHier=="string"&&this.config.defaultHier!=""){if(typeof data[this.config.defaultHier]!="string"||data[this.config.defaultHier]==""){data[this.config.defaultHier]=(mtvn.btg.util.String.isDefined(this.hcode[this.config.defaultHier])?this.hcode[this.config.defaultHier]:data.pageName);while(data[this.config.defaultHier].charAt(0)=="/"){data[this.config.defaultHier]=data[this.config.defaultHier].substring(1);}}}
if(typeof data.channel!="string"||data.channel==""){if(typeof this.hcode.channel=="string"){data.channel=this.hcode.channel;}
else if(data.pageName=="/"){data.channel=data.pageName;}else{var parts=data.pageName.split("/");for(var p=0;p<parts.length;p++){if(parts[p]!=""){data.channel=parts[p];break;}}}}
if(typeof mtvn.btg.reporting.SEO!="undefined")data=mtvn.btg.reporting.SEO.setData(this,data);if((typeof this.config.isFluxHosted=="undefined"||(typeof this.config.isFluxHosted!="undefined"&&this.config.isFluxHosted!=true))&&typeof mtvn.btg.reporting.FluxState!="undefined")data=mtvn.btg.reporting.FluxState.setData(this,data);if(typeof mtvn.btg.reporting.Search!="undefined")data=mtvn.btg.reporting.Search.setData(data);if(typeof mtvn.btg.reporting.Search!="undefined")data=mtvn.btg.reporting.Search.chkConversions(data);if(typeof mtvn.btg.reporting.RecsABTesting!="undefined")data=mtvn.btg.reporting.RecsABTesting.setData(this,data);if(typeof mtvn.btg.reporting.ESIVars!="undefined")data=mtvn.btg.reporting.ESIVars.setData(this,data);if(typeof this.config.enableTimeParting!="undefined"&&this.config.enableTimeParting==true&&typeof this.config.timePartingVarMap!="undefined"){var now=new Date();var year=now.getYear();year=year<2000?year+=1900:year;var tz=(now.getTimezoneOffset()/-60);data[this.config.timePartingVarMap.commerceHour]=data[this.config.timePartingVarMap.trafficHour]=this.hcode.getTimeParting('h',tz,year);data[this.config.timePartingVarMap.commerceDay]=data[this.config.timePartingVarMap.trafficDay]=this.hcode.getTimeParting('d',tz,year);}
if(!this.pageViewEventSet){var _events=typeof data["events"]==="string"?data["events"]:"";if(typeof this.config.pageViewEvent==="string"&&_events.indexOf(this.config.pageViewEvent)<0){if(_events!="")_events+=",";_events+=this.config.pageViewEvent;data["events"]=_events;this.pageViewEventSet=true;}}
this.preprocessData(data);this.setValues(data);this.setNewRepeat();this.attachLoggedEvent();this.hcode.t();this.clearValues();return true;},sendLinkEvent:function(data){data=typeof data!="object"?{}:data;var sessionPageName=this.getPageName();data.lnk=data.lnk?this.hcode.co(data.lnk):true;data.linkType=data.linkType?data.linkType:"o";data.referrer=location.href;this.preprocessData(data);this.setValues(data);this.setAttribute("pageName","");this.attachLoggedEvent();this.hcode.t();this.clearValues();this.setAttribute("pageName",sessionPageName);return true;},setAccountVars:function(o){this.setAttribute("un",o.name);this.setAttribute("dynamicAccountSelection",o.dynamic);this.setAttribute("dynamicAccountList",o.list);this.setAttribute("linkInternalFilters",o.filters);this.setAttribute("charSet",o.chartset);for(var i in o){if(mtvn.btg.util.String.isDefined(i))
this.setAttribute(i,(mtvn.btg.util.String.isDefined(o[i])?o[i]:''));};},logEvent:function(data){if(mtvn.btg.util.String.isDefined(data)){if(mtvn.btg.util.String.isDefined(data['UIEvent'])){mtvn.btg.util.Cookie.set('UIEvent',data['UIEvent']);}
if(mtvn.btg.util.String.isDefined(data['UIEventName'])){mtvn.btg.util.Cookie.set('UIEventName',data['UIEventName']);}
if(mtvn.btg.util.String.isDefined(data['UITrackingCode'])){mtvn.btg.util.Cookie.set('UITrackingCode',data['UITrackingCode']);}}},attachLoggedEvent:function(){if(mtvn.btg.util.String.isDefined(mtvn.btg.util.Cookie.read('UIEvent'))){this.setAttribute('events',mtvn.btg.util.Cookie.read('UIEvent'));mtvn.btg.util.Cookie.remove('UIEvent');}
if(mtvn.btg.util.String.isDefined(mtvn.btg.util.Cookie.read('UIEventName'))){this.setAttribute('eVar40',mtvn.btg.util.Cookie.read('UIEventName'));mtvn.btg.util.Cookie.remove('UIEventName');}
if(mtvn.btg.util.String.isDefined(mtvn.btg.util.Cookie.read('UITrackingCode'))){this.setAttribute('campaign',mtvn.btg.util.Cookie.read('UITrackingCode'));mtvn.btg.util.Cookie.remove('UITrackingCode');}
return true;},clearAllVars:function(){for(var i=1;i<=50;i++){this.setAttribute("eVar"+i,'');this.setAttribute("prop"+i,'');if(i<6){this.setAttribute("hier"+i,"");}}
this.setAttribute("pageName","");this.setAttribute("channel","");return true;}};mtvn.btg.reporting.QuantCast=function(config){this.labels="";this.config=config;var _qacct="p-94wNw88f65Rhk";var qcHost=(("https:"==document.location.protocol)?"https://secure":"http://edge");if(!mtvn.btg.globalvars.IS_UNIT_TEST)
{document.write(unescape("%3Cscript src='"+qcHost+".quantserve.com/quant.js' type='text/javascript'%3E%3C/script%3E"));if(!mtvn.btg.util.String.isDefined(mtvn.btg.util.Cookie.read('qcDemo'))){document.write(unescape("%3Cscript src='"+"http://pixel.quantserve.com/api/segments.json?a="+_qacct+"&callback=mtvn.btg.reporting.QuantCast.Ads.setCookieDemoTargetVal' type='text/javascript'%3E%3C/script%3E"));}}
this.labels=this.config.labels;};mtvn.btg.reporting.QuantCast.prototype={sendPageCall:function(data){if(this.config.reportMode=='direct')
{try
{_qoptions={labels:this.labels};_qacct="p-94wNw88f65Rhk";quantserve();}
catch(e){};}}};mtvn.btg.reporting.QuantCast.Ads=new function(){this.setLabels=function(data){try{var _labels="";var dartSite="";var sections="";dartSite=data.dartSite.replace(/\./g,'_');sections=data.sections.replace(/\//g,'.');_labels=mtvn.btg.config.ReportSettings.QuantCast.labels+",Viacom Global Digital Network.MTVN Digital Ad Sales.Content.Pages."+dartSite+"."+sections;_qoptions={labels:_labels};_qacct="p-94wNw88f65Rhk";quantserve();}
catch(e){};};this.setCookieDemoTargetVal=function(result){var demoTokenStr=[];for(var i=0;i<result.segments.length;i++)
demoTokenStr[i]="demo="+result.segments[i].id;mtvn.btg.util.Cookie.set('qcDemo',escape(demoTokenStr.join(";")));};};mtvn.btg.reporting.ReportingManager=new function(){var hasOmniture=false;var hasNielsen=false;var hasQuantCast=false;var hasComScore=false;var hasGoogleAnalytics=false;var pageName;var config;var omniture;var nielsen;var quantcast;var comscore;var googleAnalytics;this.init=function(){config=mtvn.btg.config.ReportSettings;if(config.Omniture){if(config.Omniture.enabled){omniture=new mtvn.btg.reporting.Omniture(config.Omniture);hasOmniture=true;}}
if(config.Nielsen){if(config.Nielsen.enabled){nielsen=new mtvn.btg.reporting.Nielsen(config.Nielsen);hasNielsen=true;}}
if(config.GoogleAnalytics){if(config.GoogleAnalytics.enabled){googleAnalytics=new mtvn.btg.reporting.GoogleAnalytics(config.GoogleAnalytics);hasGoogleAnalytics=true;}}
if(config.QuantCast){if(config.QuantCast.enabled){quantcast=new mtvn.btg.reporting.QuantCast(config.QuantCast);hasQuantCast=true;}}
if(config.ComScore){if(config.ComScore.enabled){comscore=new mtvn.btg.reporting.ComScore(config.ComScore);hasComScore=true;}}};this.sendPageCall=function(data){if(hasOmniture){omniture.sendPageCall(data);pageName=omniture.getPageName();}
if(hasNielsen){nielsen.sendPageCall(data);}
if(hasQuantCast){quantcast.sendPageCall(data);}
if(hasGoogleAnalytics){googleAnalytics.sendPageCall(data);}
if(hasComScore){comscore.sendPageCall(data);}};this.sendLinkEvent=function(data){if(hasOmniture){omniture.sendLinkEvent(data);}};this.getData=function(){return{pageName:pageName};};};mtvn.btg.reporting.Search={events:"",init:function(context){this.context=context;},setData:function(_data){if(typeof com_mtvi_SSDC!="object")return _data;var linkTrackVars="events,prop31";this._setEvent("event36");_data["eVar3"]=typeof com_mtvi_SSDC.srchtype=="string"?com_mtvi_SSDC.srchtype:"GENERAL";if(typeof com_mtvi_SSDC.srchsyn!="undefined"){this._setEvent("event33");if(typeof com_mtvi_SSDC.srchsyn=="object"){for(s=0;s<com_mtvi_SSDC.srchsyn.length;s++)com_mtvi_SSDC.srchsyn[s]=com_mtvi_SSDC.srchsyn[s].replace(/\,/,"");com_mtvi_SSDC.srchsyn=com_mtvi_SSDC.srchsyn.join(",");}
_data["eVar2"]=com_mtvi_SSDC.srchterm;_data["eVar36"]=com_mtvi_SSDC.srchsyn;linkTrackVars+=",eVar36";}
else if(typeof com_mtvi_SSDC.srchterm=="string"){this._setEvent("event38");_data["eVar2"]=com_mtvi_SSDC.srchterm;linkTrackVars+=",eVar2";}
else if(typeof com_mtvi_SSDC.srchfail=="string"){this._setEvent("event37");_data["eVar4"]=typeof com_mtvi_SSDC.appfailure=="boolean"&&com_mtvi_SSDC.appfailure?"APP_FAILURE":com_mtvi_SSDC.srchfail;linkTrackVars+=",eVar4";}
mtvn.btg.reporting.UserSegment.add(this.context,"SiteSearcher");_data["linkTrackVars"]=linkTrackVars;_data["linkTrackEvents"]=this.events;return _data;},sendLinkEvent:function(){if(!com_mtvi_SSDC)return false;var _data={linkName:"SITE_SEARCH_RESULTS",linkType:"o"}
_data=this.setData(_data);mtvn.btg.Controller.sendLinkEvent(_data);return true;},_setEvent:function(evt){if(this.events.indexOf(evt)<0){if(this.events!="")this.events+=",";this.events+=evt;}
return this.events;},chkConversions:function(_data){if(typeof _data.events=="string")this.events=_data.events;if(mtvn.btg.util.Cookie.read("mtvn_btg_SSDC_conv")){this._setEvent("event35");mtvn.btg.util.Cookie.remove("mtvn_btg_SSDC_conv");}
if(mtvn.btg.util.Cookie.read("mtvn_btg_SSDC_syn_conv")){this._setEvent("event34");mtvn.btg.util.Cookie.remove("mtvn_btg_SSDC_syn_conv");}
_data.events=this.events;return _data;},setConversion:function(){mtvn.btg.util.Cookie.set("mtvn_btg_SSDC_conv",1);},setSynConversion:function(){mtvn.btg.util.Cookie.set("mtvn_btg_SSDC_syn_conv",1);}};mtvn.btg.reporting.SEO={setData:function(context,data){this.setUserSegments(context);return data;},setUserSegments:function(context){var engines=[["google.com","GoogleUser"],["msn.com","MSNUser"],["yahoo.com","YahooUser"]];for(e=0;e<engines.length;e++){var referrer=document.referrer;if(referrer.indexOf(engines[e][0])>-1){if(typeof mtvn.btg.reporting.UserSegment!="undefined"){mtvn.btg.reporting.UserSegment.add(context,engines[e][1]);}}}}};mtvn.btg.reporting.UserSegment={init:function(context){context._UserSegment={};context._UserSegment.segments=[];if(typeof mtvn.btg.util.Session=="object"){mtvn.btg.util.Session.Variables.add([{varName:context.config.userSegmentVarMap.traffic,appendOnly:1},{varName:context.config.userSegmentVarMap.commerce,appendOnly:1}]);}
return true;},add:function(context,segment){for(s=0;s<context._UserSegment.segments.length;s++){if(context._UserSegment.segments[s]==segment)return false;}
context._UserSegment.segments[context._UserSegment.segments.length]=segment;return true;},getArr:function(context){return context._UserSegment.segments},getStr:function(context,pre,post){if(!pre)pre="";if(!post)post="";var str=typeof context._UserSegment.segments=="object"&&context._UserSegment.segments.length>0?pre+context._UserSegment.segments.join(post+","+pre)+post:null;return str;},setData:function(context,data){data[context.config.userSegmentVarMap.traffic]=this.getStr(context);data[context.config.userSegmentVarMap.commerce]=this.getStr(context,";");return data;}}
mtvn.btg.reporting.RecsABTesting={setData:function(context,data){var cookie=mtvn.btg.util.Cookie.read("rfpVendor");if(mtvn.btg.util.String.isDefined(cookie)){var segment=null;switch(cookie){case"0":segment="RecsAB_ChoiceStream";break;case"1":segment="RecsAB_Control";break;}
if(segment)
mtvn.btg.reporting.UserSegment.add(context,segment);}
return data;}};var s_code='',s_objectID;function s_gi(un,pg,ss){try{var c="=fun`o(~.substring(~){`Ps=^O~.indexOf(~#2 ~;$2~`b$2~=new Fun`o(~.length~.toLowerCase()~`Ps#8c_#k^an+'],~=new Object~};s.~`YMigrationServer~.toU"
+"pperCase~){$2~','~s.wd~);s.~')q='~=new Array~ookieDomainPeriods~.location~^LingServer~dynamicAccount~var ~link~s.m_~=='~s.apv~BufferedRequests~Element~)$2x^b!Object#WObject.prototype#WObject.protot"
+"ype[x])~etTime~visitor~$w@c(~referrer~else ~s.pt(~s.maxDelay~}c#E(e){~#i+~=''~.lastIndexOf(~^wc_i~}$2~.protocol~=new Date~^wobjectID=s.ppu=$I=$Iv1=$Iv2=$Iv3~for(i=~ction~javaEnabled~onclick~Name~te"
+"rnalFilters~javascript~s.dl~@6s.b.addBehavior(\"# default# ~=parseFloat(~typeof(v)==\"~window~cookie~while(~s.vl_g~Type~;i#U{~tfs~s.un~&&s.~o^woid~browser~.parent~document~colorDepth~String~.host~s"
+".fl(~s.rep(~s.eo~'+tm@S~s.sq~parseInt(~t=s.ot(o)~track~nload~j='1.~this~#PURL~}else{~s.vl_l~lugins~'){q='~dynamicVariablePrefix~');~;for(~Sampling~s.rc[un]~Event~._i~&&(~loadModule~resolution~s.c_r"
+"(~s.c_w(~s.eh~s.isie~\"m_\"+n~Secure~Height~tcf~isopera~ismac~escape(~'s_~.href~screen.~s#8gi(~Version~harCode~variableProvider~.s_~)s_sv(v,n[k],i)}~')>=~){s.~)?'Y':'N'~u=m[t+1](~i)clearTimeout(~e&"
+"&l$bSESSION'~name~home#P~;try{~,$m)~s.ssl~s.oun~s.rl[u~Width~o.type~s.vl_t~=s.sp(~Lifetime~s.gg('objectID~sEnabled~'+n+'~.mrq(@wun+'\"~ExternalLinks~charSet~lnk~onerror~http~currencyCode~.src~disab"
+"le~.get~MigrationKey~(''+~&&!~f',~){t=~r=s[f](~u=m[t](~Opera~Math.~s.ape~s.fsg~s.ns6~conne~InlineStats~&&l$bNONE'~Track~'0123456789~true~+\"_c\"]~s.epa(~t.m_nl~s.va_t~m._d~n=s.oid(o)~,'sqs',q);~Lea"
+"veQuery~?'&~'=')~n){~\"'+~){n=~'_'+~'+n;~\",''),~,255)}~if(~vo)~s.sampled~=s.oh(o);~+(y<1900?~n]=~1);~&&o~:'';h=h?h~;'+(n?'o.~sess~campaign~lif~ in ~s.co(~ffset~s.pe~m._l~s.c_d~s.brl~s.nrs~s[mn]~,'"
+"vo~s.pl~=(apn~space~\"s_gs(\")~vo._t~b.attach~2o7.net'~Listener~Year(~d.create~=s.n.app~)}}}~!='~'||t~)+'/~s()+'~){p=~():''~a['!'+t]~&&c){~://')i+=~){v=s.n.~channel~100~rs,~.target~o.value~s_si(t)~"
+"')dc='1~\".tl(\")~etscape~s_')t=t~omePage~='+~&&t~[b](e);~\"){n[k]~';s.va_~a+1,b):~return~mobile~height~events~random~code~=s_~=un~,pev~'MSIE ~'fun~floor(~atch~transa~s.num(~m._e~s.c_gd~,'lt~tm.g~."
+"inner~;s.gl(~,f1,f2~',s.bc~page~Group,~.fromC~sByTag~')<~++)~)){~||!~+';'~i);~y+=~l&&~''+x~[t]=~[i]=~[n];~' '+~'+v]~>=5)~:'')~+1))~il['+s~!a[t])~~s._c=^pc';`H=`y`5!`H`i@v`H`il`K;`H`in=0;}s^al=`H`il"
+";s^an=`H`in;s^al[s^a$7s;`H`in++;s.an#8an;s.cls`0x,c){`Pi,y`g`5!c)c=^O.an;`n0;i<x`8^3n=x`1i,i+1)`5c`3n)>=0)#Zn}`4y`Cfl`0x,l){`4x?@Ux)`10,l):x`Cco`0o`F!o)`4o;`Pn`B,x^Wx$Fo)$2x`3'select#T0&&x`3'filter"
+"#T0)n[x]=o[x];`4n`Cnum`0x){x`g+x^W`Pp=0;p<x`8;p#U$2(@j')`3x`1p,p#j<0)`40;`41`Crep#8rep;s.sp#8sp;s.jn#8jn;@c`0x`2,h=@jABCDEF',i,c=s.@L,n,l,e,y`g;c=c?c`E$g`5x){x`g+x`5c`SAUTO'^b'').c^uAt){`n0;i<x`8^3"
+"c=x`1i,i+$8n=x.c^uAt(i)`5n>127){l=0;e`g;^0n||l<4){e=h`1n%16,n%16+1)+e;n=(n-n%16)/16;l++}#Z'%u'+e}`6c`S+')#Z'%2B';`b#Z^oc)}x=y^Qx=x?^F^o#b),'+`G%2B'):x`5x&&c^6em==1&&x`3'%u#T0&&x`3'%U#T0){i=x`3'%^V^"
+"0i>=0){i++`5h`18)`3x`1i,i+1)`E())>=0)`4x`10,i)+'u00'+x`1#Yi=x`3'%',i$a}`4x`Cepa`0x`2;`4x?un^o^F#b,'+`G ')):x`Cpt`0x,d,f,a`2,t=x,z=0,y,r;^0t){y=t`3d);y=y<0?t`8:y;t=t`10,y);@Yt,a)`5r)`4r;z+=y+d`8;t=x"
+"`1z,x`8);t=z<x`8?t:''}`4''`Cisf`0t,a){`Pc=a`3':')`5c>=0)a=a`10,c)`5t`10,2)`S$u`12);`4(t!`g$x==a)`Cfsf`0t,a`2`5`ca,`G,'is@Wt))@d+=(@d!`g?`G`ft;`40`Cfs`0x,f`2;@d`g;`cx,`G,'fs@Wf);`4@d`Csi`0wd`2,c`g+s"
+"_gi,a=c`3\"{\"),b=c`h\"}\"),m;c#8fe(a>0&&b>0?c`1#10)`5wd&&wd.^A$iwd.s`Xout(#C`o s_sv(o,n,k){`Pv=o[k],i`5v`F`xstring\"||`xnumber\")n[k]=v;`bif (`xarray$z`K;`n0;i<v`8;i++^x`bif (`xobject$z`B^Wi$Fv^x}"
+"}fun`o $q{`Pwd=`y,s,i,j,c,a,b;wd^wgi`7\"un\",\"pg\",\"ss\",@wc+'\");wd.^s@w@9+'\");s=wd.s;s.sa(@w^5+'\"`I^4=wd;`c^1,\",\",\"vo1\",t`I@M=^G=s.`Q`r=s.`Q^2=`H`m=\\'\\'`5t.m_#a@n)`n0;i<@n`8^3n=@n[i]`5@"
+"vm=t#ec=t[^i]`5m$ic=\"\"+c`5c`3\"fun`o\")>=0){a=c`3\"{\");b=c`h\"}\");c=a>0&&b>0?c`1#10;s[^i@l=c`5#H)s.^c(n)`5s[n])for(j=0;j<$J`8;j#Us_sv(m,s[n],$J[j]$a}}`Pe,o,t@6o=`y.opener`5o$9^wgi@Xo^wgi(@w^5+'"
+"\")`5t)$q}`e}',1)}`Cc_d`g;#If`0t,a`2`5!#Gt))`41;`40`Cc_gd`0`2,d=`H`M^D@4,n=s.fpC`L,p`5!n)n=s.c`L`5d@V$K@xn?^Jn):2;n=n>2?n:2;p=d`h'.')`5p>=0){^0p>=0&&n>1$fd`h'.',p-$8n--}$K=p>0&&`cd,'.`Gc_gd@W0)?d`1"
+"p):d}}`4$K`Cc_r`0k`2;k=@c(k);`Pc=#fs.d.`z,i=c`3#fk+@u,e=i<0?i:c`3';',i),v=i<0?'':@mc`1i+2+k`8,e<0?c`8:e));`4v$b[[B]]'?v:''`Cc_w`0k,v,e`2,d=#I(),l=s.`z@F,t;v`g+v;l=l?@Ul)`E$g`5@3@h@X(v!`g?^Jl?l:0):-"
+"60)`5t){e`l;e.s`X(e.g`X()+(t*$m0))}`jk@h^zd.`z=k+'`Zv!`g?v:'[[B]]')+'; path=/;'+(@3?' expires$we.toGMT^C()#X`f(d?' domain$wd#X:'^V`4^ek)==v}`40`Ceh`0o,e,r,f`2,b=^p'+e+@ys^an,n=-1,l,i,x`5!^gl)^gl`K;"
+"l=^gl;`n0;i<l`8&&n<0;i++`Fl[i].o==o&&l[i].e==e)n=i`jn<0@xi;l[n]`B}x=l#ex.o=o;x.e=e;f=r?x.b:f`5r||f){x.b=r?0:o[e];x.o[e]=f`jx.b){x.o[b]=x.b;`4b}`40`Ccet`0f,a,t,o,b`2,r,^l`5`T>=5^b!s.^m||`T>=7#V^l`7'"
+"s`Gf`Ga`Gt`G`Pe,r@6@Ya)`er=s[t](e)}`4r^Vr=^l(s,f,a,t)^Q$2s.^n^6u`3#B4^y0)r=s[b](a);else{^g(`H,'@N',0,o);@Ya`Ieh(`H,'@N',1)}}`4r`Cg^4et`0e`2;`4s.^4`Cg^4oe`7'e`G`Ac;^g(`y,\"@N\",1`Ie^4=1;c=s.t()`5c)s"
+".d.write(c`Ie^4=0;`4@k'`Ig^4fb`0a){`4`y`Cg^4f`0w`2,p=w^9,l=w`M;s.^4=w`5p&&p`M!=#ap`M^D==l^D^z^4=p;`4s.g^4f(s.^4)}`4s.^4`Cg^4`0`2`5!s.^4^z^4=`H`5!s.e^4)s.^4=s.cet('g^4@Ws.^4,'g^4et',s.g^4oe,'g^4fb')"
+"}`4s.^4`Cmrq`0u`2,l=@A],n,r;@A]=0`5l)for(n=0;n<l`8;n#U{r=l#es.mr(0,0,r.r,0,r.t,r.u)}`Cbr`0id,rs`2`5s.@R`U#W^f^pbr',rs))$L=rs`Cflush`U`0){^O.fbr(0)`Cfbr`0id`2,br=^e^pbr')`5!br)br=$L`5br`F!s.@R`U)^f^"
+"pbr`G'`Imr(0,0,br)}$L=0`Cmr`0$C,q,$nid,ta,u`2,dc=s.dc,t1=s.`N,t2=s.`N^j,tb=s.`NBase,p='.sc',ns=s.`Y`r$R,un=s.cls(u?u:(ns?ns:s.fun)),r`B,l,imn=^pi_'+(un),im,b,e`5!rs`Ft1`Ft2^6ssl)t1=t2^Q$2!tb)tb='$V"
+"`5dc)dc=@Udc)`9;`bdc='d1'`5tb`S$V`Fdc`Sd1$r12';`6dc`Sd2$r22';p`g}t1#9+'.'+dc+'.'+p+tb}rs='@O'+(@8?'s'`f'://'+t1+'/b/ss/'+^5+'/'+(s.#3?'5.1':'1'$dH.20.3/'+$C+'?AQB=1&ndh=1'+(q?q`f'&AQE=1'`5^h@Vs.^n`"
+"F`T>5.5)rs=^E$n4095);`brs=^E$n2047)`jid^zbr(id,rs);#2}`js.d.images&&`T>=3^b!s.^m||`T>=7)^b@e<0||`T>=6.1)`F!s.rc)s.rc`B`5!^Y){^Y=1`5!s.rl)s.rl`B;@An]`K;s`Xout('$2`y`il)`y`il['+s^an+']@J)',750)^Ql=@A"
+"n]`5l){r.t=ta;r.u#9;r.r=rs;l[l`8]=r;`4''}imn+=@y^Y;^Y++}im=`H[imn]`5!im)im=`H[im$7new Image;im^wl=0;im.o^M`7'e`G^O^wl=1;`Pwd=`y,s`5wd`il){s=wd`il['+s^an+'];s@J`Inrs--`5!$M)`Rm(\"rr\")}')`5!$M^znrs="
+"1;`Rm('rs')}`b$M++;im@Q=rs`5rs`3'&pe=^y0^b!ta||ta`S_self$ca`S_top'||(`H.@4$xa==`H.@4)#Vb=e`l;^0!im^w#ae.g`X()-b.g`X()<500)e`l}`4''}`4'<im'+'g sr'+'c=@wrs+'\" width=1 #4=1 border=0 alt=\"\">'`Cgg`0v"
+"`2`5!`H[^p#g)`H[^p#g`g;`4`H[^p#g`Cglf`0t,a`Ft`10,2)`S$u`12);`Ps=^O,v=s.gg(t)`5v)s#cv`Cgl`0v`2`5s.pg)`cv,`G,'gl@W0)`Crf`0x`2,y,i,j,h,l,a,b`g,c`g,t`5x){y`g+x;i=y`3'?')`5i>0){a=y`1i+$8y=y`10,#Yh=y`9;i"
+"=0`5h`10,7)`S@O$j7;`6h`10,8)`S@Os$j8;h=h`1#Yi=h`3\"/\")`5i>0){h=h`10,i)`5h`3'google^y0){a@Ea,'&')`5a`8>1){l=',q,ie,start,search_key,word,kw,cd,'^Wj=0;j<a`8;j++@Xa[j];i=t`3@u`5i>0&&l`3`G+t`10,i)+`G)"
+">=0)b+=(b@t'`ft;`bc+=(c@t'`ft`jb$i#Z'?'+b+'&'+c`5#b!=y)x=y}}}}}}`4x`Chav`0`2,qs`g,fv=s.`Q@iVa$nfe=s.`Q@i^Zs,mn,i`5$I){mn=$I`10,1)`E()+$I`11)`5$N){fv=$N.^LVars;fe=$N.^L^Zs}}fv=fv?fv+`G+^R+`G+^R2:'';"
+"`n0;i<@o`8^3`Pk=@o[i],v=s[k],b=k`10,4),x=k`14),n=^Jx),q=k`5v&&k$b`Q`r'&&k$b`Q^2'`F$I||s.@M||^G`Ffv^b`G+fv+`G)`3`G+k+`G)<0)v`g`5k`S#5'&&fe)v=s.fs(v,fe)`jv`Fk`S^U`JD';`6k`S`YID`Jvid';`6k`S^P^Tg';v=^E"
+"v$1`6k`S`a^Tr';v=^Es.rf(v)$1`6k`Svmk'||k`S`Y@T`Jvmt';`6k`S`D^Tvmf'`5@8^6`D^j)v`g}`6k`S`D^j^Tvmf'`5!@8^6`D)v`g}`6k`S@L^Tce'`5v`E()`SAUTO')v='ISO8859-1';`6s.em==2)v='UTF-8'}`6k`S`Y`r$R`Jns';`6k`Sc`L`"
+"Jcdp';`6k`S`z@F`Jcl';`6k`S^v`Jvvp';`6k`S@P`Jcc';`6k`S$l`Jch';`6k`S#F`oID`Jxact';`6k`S$D`Jv0';`6k`S^d`Js';`6k`S^B`Jc';`6k`S`t^t`Jj';`6k`S`p`Jv';`6k`S`z@H`Jk';`6k`S^8@B`Jbw';`6k`S^8^k`Jbh';`6k`S@f`o^"
+"2`Jct';`6k`S@5`Jhp';`6k`Sp^S`Jp';`6#Gx)`Fb`Sprop`Jc@z`6b`SeVar`Jv@z`6b`Slist`Jl@z`6b`Shier^Th@zv=^Ev$1`jv)qs+='&'+q+'$w(k`10,3)$bpev'?@c(v):v$a`4qs`Cltdf`0t,h@Xt?t`9$A`9:'';`Pqi=h`3'?^Vh=qi>=0?h`10"
+",qi):h`5t&&h`1h`8-(t`8#j`S.'+t)`41;`40`Cltef`0t,h@Xt?t`9$A`9:''`5t&&h`3t)>=0)`41;`40`Clt`0h`2,lft=s.`QDow^MFile^2s,lef=s.`QEx`s,$E=s.`QIn`s;$E=$E?$E:`H`M^D@4;h=h`9`5s.^LDow^MLinks&&lft&&`clft,`G#Jd"
+"@Wh))`4'd'`5s.^L@K&&h`10,1)$b# '^blef||$E)^b!lef||`clef,`G#Je@Wh))^b!$E#W`c$E,`G#Je@Wh)))`4'e';`4''`Clc`7'e`G`Ab=^g(^O,\"`q\"`I@M=$G^O`It(`I@M=0`5b)`4^O$y`4@k'`Ibc`7'e`G`Af,^l`5s.d^6d.all^6d.all.cp"
+"pXYctnr)#2;^G=e@Q`V?e@Q`V:e$o;^l`7\"s\",\"`Pe@6$2^G^b^G.tag`r||^G^9`V||^G^9Node))s.t()`e}\");^l(s`Ieo=0'`Ioh`0o`2,l=`H`M,h=o^q?o^q:'',i,j,k,p;i=h`3':^Vj=h`3'?^Vk=h`3'/')`5h^bi<0||(j>=0&&i>j)||(k>=0"
+"&&i>k))$fo`k$9`k`8>1?o`k:(l`k?l`k:'^Vi=l.path@4`h'/^Vh=(p?p+'//'`f(o^D?o^D:(l^D?l^D#i)+(h`10,1)$b/'?l.path@4`10,i<0?0:i$d'`fh}`4h`Cot`0o){`Pt=o.tag`r;t=t$x`E?t`E$g`5t`SSHAPE')t`g`5t`Ft`SINPUT'&&@C&"
+"&@C`E)t=@C`E();`6!t$9^q)t='A';}`4t`Coid`0o`2,^K,p,c,n`g,x=0`5t@V^7$fo`k;c=o.`q`5o^q^bt`SA$c`SAREA')^b!c#Wp||p`9`3'`t#T0))n$5`6c@x^Fs.rep(^Fs.rep@Uc,\"\\r$0\"\\n$0\"\\t$0' `G^Vx=2}`6$p^bt`SINPUT$c`S"
+"SUBMIT')@x$p;x=3}`6o@Q$x`SIMAGE')n=o@Q`5@v^7=^En@7;^7t=x}}`4^7`Crqf`0t,un`2,e=t`3@u,u=e>=0?`G+t`10,e)+`G:'';`4u&&u`3`G+un+`G)>=0?@mt`1e#j:''`Crq`0un`2,c#9`3`G),v=^e^psq'),q`g`5c<0)`4`cv,'&`Grq@Wun)"
+";`4`cun,`G,'rq',0)`Csqp`0t,a`2,e=t`3@u,q=e<0?'':@mt`1e+1)`Isqq[q]`g`5e>=0)`ct`10,e),`G@r`40`Csqs`0un,q`2;^Iu[u$7q;`40`Csq`0q`2,k=^psq',v=^ek),x,c=0;^Iq`B;^Iu`B;^Iq[q]`g;`cv,'&`Gsqp',0`Ipt(^5,`G@rv`"
+"g^Wx$F^Iu`W)^Iq[^Iu[x]]+=(^Iq[^Iu[x]]?`G`fx^Wx$F^Iq`W^6sqq[x]^bx==q||c<2#Vv+=(v@t'`f^Iq[x]+'`Zx);c++}`4^fk,v,0)`Cwdl`7'e`G`Ar=@k,b=^g(`H,\"o^M\"),i,o,oc`5b)r=^O$y`n0;i<s.d.`Qs`8^3o=s.d.`Qs[i];oc=o."
+"`q?\"\"+o.`q:\"\"`5(oc`3$S<0||oc`3\"^woc(\")>=0)$9c`3$s<0)^g(o,\"`q\",0,s.lc);}`4r^V`Hs`0`2`5`T>3^b!^h#Ws.^n||`T#h`Fs.b^6$U^Z)s.$U^Z('`q#O);`6s.b^6b.add^Z$W)s.b.add^Z$W('click#O,false);`b^g(`H,'o^M"
+"',0,`Hl)}`Cvs`0x`2,v=s.`Y^X,g=s.`Y^X#Qk=^pvsn_'+^5+(g?@yg#i,n=^ek),e`l,y=e@S$X);e.set$Xy+10$61900:0))`5v){v*=$m`5!n`F!^fk,x,e))`40;n=x`jn%$m00>v)`40}`41`Cdyasmf`0t,m`Ft&&m&&m`3t)>=0)`41;`40`Cdyasf`"
+"0t,m`2,i=t?t`3@u:-1,n,x`5i>=0&&m){`Pn=t`10,i),x=t`1i+1)`5`cx,`G,'dyasm@Wm))`4n}`40`Cuns`0`2,x=s.`OSele`o,l=s.`OList,m=s.`OM#E,n,i;^5=^5`9`5x&&l`F!m)m=`H`M^D`5!m.toLowerCase)m`g+m;l=l`9;m=m`9;n=`cl,"
+"';`Gdyas@Wm)`5n)^5=n}i=^5`3`G`Ifun=i<0?^5:^5`10,i)`Csa`0un`2;^5#9`5!@9)@9#9;`6(`G+@9+`G)`3`G+un+`G)<0)@9+=`G+un;^5s()`Cm_i`0n,a`2,m,f=n`10,1),r,l,i`5!`Rl)`Rl`B`5!`Rnl)`Rnl`K;m=`Rl[n]`5!a&&m&&#H@Vm^"
+"a)`Ra(n)`5!m){m`B,m._c=^pm';m^an=`H`in;m^al=s^al;m^al[m^a$7m;`H`in++;m.s=s;m._n=n;$J`K('_c`G_in`G_il`G_i`G_e`G_d`G_dl`Gs`Gn`G_r`G_g`G_g1`G_t`G_t1`G_x`G_x1`G_rs`G_rr`G_l'`Im_l[$7m;`Rnl[`Rnl`8]=n}`6m"
+"._r@Vm._m){r=m._r;r._m=m;l=$J;`n0;i<l`8;i#U$2m[l[i]])r[l[i]]=m[l[i]];r^al[r^a$7r;m=`Rl[$7r`jf==f`E())s[$7m;`4m`Cm_a`7'n`Gg`Ge`G$2!g)g=^i;`Ac=s[g@l,m,x,f=0`5!c)c=`H[\"s_\"+g@l`5c&&s_d)s[g]`7\"s\",s_"
+"ft(s_d(c)));x=s[g]`5!x)x=`H[\\'s_\\'+g]`5!x)x=`H[g];m=`Ri(n,1)`5x^b!m^a||g!=^i#Vm^a=f=1`5(\"\"+x)`3\"fun`o\")>=0)x(s);`b`Rm(\"x\",n,x,e)}m=`Ri(n,1)`5@pl)@pl=@p=0;`ut();`4f'`Im_m`0t,n,d,e@X@yt;`Ps=^"
+"O,i,x,m,f=@yt,r=0,u`5`R#a`Rnl)`n0;i<`Rnl`8^3x=`Rnl[i]`5!n||x==@vm=`Ri(x);u=m[t]`5u`F@Uu)`3#C`o^y0`Fd&&e)@Zd,e);`6d)@Zd);`b@Z)}`ju)r=1;u=m[t+1]`5u@Vm[f]`F@Uu)`3#C`o^y0`Fd&&e)@1d,e);`6d)@1d);`b@1)}}m"
+"[f]=1`5u)r=1}}`4r`Cm_ll`0`2,g=`Rdl,i,o`5g)`n0;i<g`8^3o=g[i]`5o)s.^c(o.n,o.u,o.d,o.l,o.e,$8g#d0}`C^c`0n,u,d,l,e,ln`2,m=0,i,g,o=0#N,c=s.h?s.h:s.b,b,^l`5@vi=n`3':')`5i>=0){g=n`1i+$8n=n`10,i)}`bg=^i;m="
+"`Ri(n)`j(l||(n@V`Ra(n,g)))&&u^6d&&c^6$Y`V`Fd){@p=1;@pl=1`jln`F@8)u=^Fu,'@O:`G@Os:^Vi=^ps:'+s^an+':@I:'+g;b='`Ao=s.d@S`VById(@wi+'\")`5s$9`F!o.#a`H.'+g+'){o.l=1`5o.@2o.#Yo.i=0;`Ra(\"@I\",@wg+'@w(e?'"
+",@we+'\"'`f')}';f2=b+'o.c++`5!`d)`d=250`5!o.l$9.c<(`d*2)/$m)o.i=s`Xout(o.f2@7}';f1`7'e',b+'}^V^l`7's`Gc`Gi`Gu`Gf1`Gf2`G`Pe,o=0@6o=s.$Y`V(\"script\")`5o){@C=\"text/`t\"$Bid=i;o.defer=@k;o.o^M=o.onre"
+"adystatechange=f1;o.f2=f2;o.l=0;'`f'o@Q=u;c.appendChild(o)$Bc=0;o.i=s`Xout(f2@7'`f'}`eo=0}`4o^Vo=^l(s,c,i,u#N)^Qo`B;o.n=n+':'+g;o.u=u;o.d=d;o.l=l;o.e=e;g=`Rdl`5!g)g=`Rdl`K;i=0;^0i<g`8&&g[i])i++;g#d"
+"o}}`6@vm=`Ri(n);#H=1}`4m`Cvo1`0t,a`Fa[t]||$h)^O#ca[t]`Cvo2`0t,a`F#l{a#c^O[t]`5#l$h=1}`Cdlt`7'`Ad`l,i,vo,f=0`5`ul)`n0;i<`ul`8^3vo=`ul[i]`5vo`F!`Rm(\"d\")||d.g`X()-$T>=`d){`ul#d0;s.t($3}`bf=1}`j`u@2`"
+"ui`Idli=0`5f`F!`ui)`ui=s`Xout(`ut,`d)}`b`ul=0'`Idl`0vo`2,d`l`5!$3vo`B;`c^1,`G$O2',$3;$T=d.g`X()`5!`ul)`ul`K;`ul[`ul`8]=vo`5!`d)`d=250;`ut()`Ct`0vo,id`2,trk=1,tm`l,sed=Math&&@b#6?@b#D@b#6()*$m000000"
+"00000):#K`X(),$C='s'+@b#D#K`X()/10800000)%10+sed,y=tm@S$X),vt=tm@SDate($d^HMonth($d'$6y+1900:y)+' ^HHour$e:^HMinute$e:^HSecond$e ^HDay()+#f#K`XzoneO$H(),^l,^4=s.g^4(),ta`g,q`g,qs`g,#7`g,vb`B#M^1`Iu"
+"ns(`Im_ll()`5!s.td){`Ptl=^4`M,a,o,i,x`g,c`g,v`g,p`g,bw`g,bh`g,^N0',k=^f^pcc`G@k',0@0,hp`g,ct`g,pn=0,ps`5^C&&^C.prototype){^N1'`5j.m#E){^N2'`5tm.setUTCDate){^N3'`5^h^6^n&&`T#h^N4'`5pn.toPrecisio@v^N"
+"5';a`K`5a.forEach){^N6';i=0;o`B;^l`7'o`G`Pe,i=0@6i=new Iterator(o)`e}`4i^Vi=^l(o)`5i&&i.next)^N7'}}}}`j`T>=4)x=^rwidth+'x'+^r#4`5s.isns||s.^m`F`T>=3$k`p(@0`5`T>=4){c=^rpixelDepth;bw=`H#L@B;bh=`H#L^"
+"k}}$P=s.n.p^S}`6^h`F`T>=4$k`p(@0;c=^r^B`5`T#h{bw=s.d.^A`V.o$H@B;bh=s.d.^A`V.o$H^k`5!s.^n^6b){^l`7's`Gtl`G`Pe,hp=0`vh$v\");hp=s.b.isH$v(tl)?\"Y\":\"N\"`e}`4hp^Vhp=^l(s,tl);^l`7's`G`Pe,ct=0`vclientCa"
+"ps\");ct=s.b.@f`o^2`e}`4ct^Vct=^l(s$a`br`g`j$P)^0pn<$P`8&&pn<30){ps=^E$P[pn].@4@7#X`5p`3ps)<0)p+=ps;pn++}s.^d=x;s.^B=c;s.`t^t=j;s.`p=v;s.`z@H=k;s.^8@B=bw;s.^8^k=bh;s.@f`o^2=ct;s.@5=hp;s.p^S=p;s.td="
+"1`j$3{`c^1,`G$O2',vb`Ipt(^1,`G$O1',$3`js.useP^S)s.doP^S(s);`Pl=`H`M,r=^4.^A.`a`5!s.^P)s.^P=l^q?l^q:l`5!s.`a@Vs._1_`a^z`a=r;s._1_`a=1`j(vo&&$T)#W`Rm('d'#V`Rm('g')`5s.@M||^G){`Po=^G?^G:s.@M`5!o)`4'';"
+"`Pp=s.#P`r,w=1,^K,@q,x=^7t,h,l,i,oc`5^G$9==^G){^0o@Vn$x$bBODY'){o=o^9`V?o^9`V:o^9Node`5!o)`4'';^K;@q;x=^7t}oc=o.`q?''+o.`q:''`5(oc`3$S>=0$9c`3\"^woc(\")<0)||oc`3$s>=0)`4''}ta=n?o$o:1;h$5i=h`3'?^Vh="
+"s.`Q@s^C||i<0?h:h`10,#Yl=s.`Q`r;t=s.`Q^2?s.`Q^2`9:s.lt(h)`5t^bh||l))q+='&pe=@M_'+(t`Sd$c`Se'?@c(t):'o')+(h@tpev1`Zh)`f(l@tpev2`Zl):'^V`btrk=0`5s.^L@g`F!p$fs.^P;w=0}^K;i=o.sourceIndex`5@G')@x@G^Vx=1"
+";i=1`jp&&n$x)qs='&pid`Z^Ep,255))+(w@tpidt$ww`f'&oid`Z^En@7)+(x@toidt$wx`f'&ot`Zt)+(i@toi$wi#i}`j!trk@Vqs)`4'';$4=s.vs(sed)`5trk`F$4)#7=s.mr($C,(vt@tt`Zvt)`fs.hav()+q+(qs?qs:s.rq(^5)),0,id,ta);qs`g;"
+"`Rm('t')`5s.p_r)s.p_r(`I`a`g}^I(qs);^Q`u($3;`j$3`c^1,`G$O1',vb`I@M=^G=s.`Q`r=s.`Q^2=`H`m`g`5s.pg)`H^w@M=`H^weo=`H^w`Q`r=`H^w`Q^2`g`5!id@Vs.tc^ztc=1;s.flush`U()}`4#7`Ctl`0o,t,n,vo`2;s.@M=$Go`I`Q^2=t"
+";s.`Q`r=n;s.t($3}`5pg){`H^wco`0o){`P^s\"_\",1,$8`4$Go)`Cwd^wgs`0u@v`P^sun,1,$8`4s.t()`Cwd^wdc`0u@v`P^sun,$8`4s.t()}}@8=(`H`M`k`9`3'@Os^y0`Id=^A;s.b=s.d.body`5s.d@S`V#S`r^zh=s.d@S`V#S`r('HEAD')`5s.h"
+")s.h=s.h[0]}s.n=navigator;s.u=s.n.userAgent;@e=s.u`3'N$t6/^V`Papn$Z`r,v$Z^t,ie=v`3#B'),o=s.u`3'@a '),i`5v`3'@a^y0||o>0)apn='@a';^h$Q`SMicrosoft Internet Explorer'`Iisns$Q`SN$t'`I^m$Q`S@a'`I^n=(s.u`"
+"3'Mac^y0)`5o>0)`T`ws.u`1o+6));`6ie>0){`T=^Ji=v`1ie+5))`5`T>3)`T`wi)}`6@e>0)`T`ws.u`1@e+10));`b`T`wv`Iem=0`5^C#R^u){i=^o^C#R^u(256))`E(`Iem=(i`S%C4%80'?2:(i`S%U0$m'?1:0))}s.sa(un`Ivl_l='^U,`YID,vmk,"
+"`Y@T,`D,`D^j,ppu,@L,`Y`r$R,c`L,`z@F,#P`r,^P,`a,@P#0l@E^R,`G`Ivl_t=^R+',^v,$l,server,#P^2,#F`oID,purchaseID,$D,state,zip,#5,products,`Q`r,`Q^2'^W`Pn=1;n<51;n#U@D+=',prop@I,eVar@I,hier@I,list@z^R2=',"
+"tnt,pe#A1#A2#A3,^d,^B,`t^t,`p,`z@H,^8@B,^8^k,@f`o^2,@5,p^S';@D+=^R2;@o@E@D,`G`Ivl_g=@D+',`N,`N^j,`NBase,fpC`L,@R`U,#3,`Y^X,`Y^X#Q`OSele`o,`OList,`OM#E,^LDow^MLinks,^L@K,^L@g,`Q@s^C,`QDow^MFile^2s,`"
+"QEx`s,`QIn`s,`Q@iVa$n`Q@i^Zs,`Q`rs,@M,eo,_1_`a#0g@E^1,`G`Ipg=pg#M^1)`5!ss)`Hs()",w=window,l=w.s_c_il,n=navigator,u=n.userAgent,v=n.appVersion,e=v.indexOf('MSIE '),m=u.indexOf('Netscape6/'),a,i,s;if(un){un=un.toLowerCase();if(l)for(i=0;i<l.length;i++){s=l[i];if(!s._c||s._c=='s_c'){if(s.oun==un)return s;else if(s.fs&&s.sa&&s.fs(s.oun,un)){s.sa(un);return s}}}}w.s_an='0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';w.s_sp=new Function("x","d","var a=new Array,i=0,j;if(x){if(x.split)a=x.split(d);else if(!d)for(i=0;i<x.length;i++)a[a.length]=x.substring(i,i+1);else while(i>=0){j=x.indexOf(d,i);a[a.length]=x.subst"
+"ring(i,j<0?x.length:j);i=j;if(i>=0)i+=d.length}}return a");w.s_jn=new Function("a","d","var x='',i,j=a.length;if(a&&j>0){x=a[0];if(j>1){if(a.join)x=a.join(d);else for(i=1;i<j;i++)x+=d+a[i]}}return x");w.s_rep=new Function("x","o","n","return s_jn(s_sp(x,o),n)");w.s_d=new Function("x","var t='`^@$#',l=s_an,l2=new Object,x2,d,b=0,k,i=x.lastIndexOf('~~'),j,v,w;if(i>0){d=x.substring(0,i);x=x.substring(i+2);l=s_sp(l,'');for(i=0;i<62;i++)l2[l[i]]=i;t=s_sp(t,'');d"
+"=s_sp(d,'~');i=0;while(i<5){v=0;if(x.indexOf(t[i])>=0) {x2=s_sp(x,t[i]);for(j=1;j<x2.length;j++){k=x2[j].substring(0,1);w=t[i]+k;if(k!=' '){v=1;w=d[b+l2[k]]}x2[j]=w+x2[j].substring(1)}}if(v)x=s_jn("
+"x2,'');else{w=t[i]+' ';if(x.indexOf(w)>=0)x=s_rep(x,w,t[i]);i++;b+=62}}}return x");w.s_fe=new Function("c","return s_rep(s_rep(s_rep(c,'\\\\','\\\\\\\\'),'\"','\\\\\"'),\"\\n\",\"\\\\n\")");w.s_fa=new Function("f","var s=f.indexOf('(')+1,e=f.indexOf(')'),a='',c;while(s>=0&&s<e){c=f.substring(s,s+1);if(c==',')a+='\",\"';else if((\"\\n\\r\\t \").indexOf(c)<0)a+=c;s++}return a?'\"'+a+'\"':"
+"a");w.s_ft=new Function("c","c+='';var s,e,o,a,d,q,f,h,x;s=c.indexOf('=function(');while(s>=0){s++;d=1;q='';x=0;f=c.substring(s);a=s_fa(f);e=o=c.indexOf('{',s);e++;while(d>0){h=c.substring(e,e+1);if(q){i"
+"f(h==q&&!x)q='';if(h=='\\\\')x=x?0:1;else x=0}else{if(h=='\"'||h==\"'\")q=h;if(h=='{')d++;if(h=='}')d--}if(d>0)e++}c=c.substring(0,s)+'new Function('+(a?a+',':'')+'\"'+s_fe(c.substring(o+1,e))+'\")"
+"'+c.substring(e+1);s=c.indexOf('=function(')}return c;");c=s_d(c);if(e>0){a=parseInt(i=v.substring(e+5));if(a>3)a=parseFloat(i)}else if(m>0)a=parseFloat(u.substring(m+10));else a=parseFloat(v);if(a>=5&&v.indexOf('Opera')<0&&u.indexOf('Opera')<0){w.s_c=new Function("un","pg","ss","var s=this;"+c);return new s_c(un,pg,ss)}else s=new Function("un","pg","ss","var s=new Object;"+s_ft(c)+";return s");return s(un,pg,ss);}catch(e){}}
mtvn.btg.reporting.omniture.Hcode=s_gi("");if(typeof mtvn.btg.reporting.omniture.Hcode==="object")
{mtvn.btg.reporting.omniture.Hcode.setAccount=function(account){this.un=account;};}
if(typeof mtvn.btg.reporting.omniture.Hcode==="object"){mtvn.btg.reporting.omniture.Hcode.getNewRepeat=new Function(""
+"var s=this,e=new Date(),cval,ct=e.getTime(),y=e.getYear();e.setTime"
+"(ct+30*24*60*60*1000);cval=s.c_r('s_nr');if(cval.length==0){s.c_w("
+"'s_nr',ct,e);return 'New';}if(cval.length!=0&&ct-cval<30*60*1000){s"
+".c_w('s_nr',ct,e);return 'New';}if(cval<1123916400001){e.setTime(cv"
+"al+30*24*60*60*1000);s.c_w('s_nr',ct,e);return 'Repeat';}else retur"
+"n 'Repeat';");}
if(typeof mtvn.btg.reporting.omniture.Hcode==="object"){mtvn.btg.reporting.omniture.Hcode.getTimeParting=new Function("t","z","y",""
+"dc=new Date('1/1/2000');f=15;ne=8;if(dc.getDay()!=6||"
+"dc.getMonth()!=0){return'Data Not Available'}else{;z=parseInt(z);"
+"if(y=='2009'){f=8;ne=1};gmar=new Date('3/1/'+y);dsts=f-gmar.getDay("
+");gnov= new Date('11/1/'+y);dste=ne-gnov.getDay();spr=new Date('3/'"
+"+dsts+'/'+y);fl=new Date('11/'+dste+'/'+y);cd=new Date();"
+"if(cd>spr&&cd<fl){z=z+1}else{z=z};utc=cd.getTime()+(cd.getTimezoneO"
+"ffset()*60000);tz=new Date(utc + (3600000*z));thisy=tz.getFullYear("
+");var days=['Sunday','Monday','Tuesday','Wednesday','Thursday','Fr"
+"iday','Saturday'];if(thisy!=y){return'Data Not Available'}else{;thi"
+"sh=tz.getHours();thismin=tz.getMinutes();thisd=tz.getDay();var dow="
+"days[thisd];var ap='AM';var dt='Weekday';var mint='00';if(thismin>3"
+"0){mint='30'}if(thish>=12){ap='PM';thish=thish-12};if (thish==0){th"
+"ish=12};if(thisd==6||thisd==0){dt='Weekend'};var timestring=thish+'"
+":'+mint+ap;var daystring=dow;var endstring=dt;if(t=='h'){return tim"
+"estring}if(t=='d'){return daystring};if(t=='w'){return en"
+"dstring}}};");}
if(typeof mtvn.btg.reporting.omniture.Hcode==="object"){mtvn.btg.reporting.omniture.Hcode.getValOnce=new Function("v","c","e",""
+"var s=this,k=s.c_r(c),a=new Date;e=e?e:0;if(v){a.setTime(a.getTime("
+")+e*86400000);s.c_w(c,v,e?a:0);}return v==k?'':v");}
mtvn.btg.ads.AdManager=new function(){var hasDoubleClickAd=false;var hasInternationalAd=false;var hasQuantCast=false;var config;var ads=[];var data={};var counter=0;this.reloadableAds={};this.init=function(){config=mtvn.btg.config.AdSettings;var qc_obj={};if(config.DoubleClick){if(config.DoubleClick.enabled){hasDoubleClickAd=true;if(mtvn.btg.util.String.isDefined(config.DoubleClick.sections)){config.DoubleClick.sections=mtvn.btg.util.String.stripFileExtension(config.DoubleClick.sections);qc_obj.sections=config.DoubleClick.sections;}
else{this.setDefaultSections();if(mtvn.btg.util.String.isDefined(data.sections))
qc_obj.sections=data.sections;}
qc_obj.dartSite=config.DoubleClick.dartSite;data.tile=0;data.ord=mtvn.btg.util.Math.random(100000000000000000,999999999999999999);}}
if(config.International){if(config.International.enabled){qc_obj.sections=mtvn.btg.util.Sections.getAdSections();qc_obj.dartSite=config.International.dartSite;hasInternationalAd=true;}}
if(config.QuantCast){if(config.QuantCast.enabled){hasQuantCast=true;}}
if(hasQuantCast){mtvn.btg.reporting.QuantCast.Ads.setLabels(qc_obj);}};this.placeAd=function(a_data){var ad=this.getAd(a_data);return ad.placeAd(a_data);};this.placeIFrameAd=function(adHtml,a_data){var containerId="container"+a_data.reloadableAdId;this.reloadableAds[a_data.reloadableAdId]={data:a_data};document.write('<iframe name="'+containerId+'" id="'+containerId+'" src="'+adHtml+'?'+a_data.reloadableAdId+'" width='+a_data.size.split('x')[0]+' height='+a_data.size.split('x')[1]+' marginwidth=0 marginheight=0 frameborder=0 scrolling="no"></iframe>');}
this.getData=function(){return data;};this.setDefaultSections=function(a_defaultSections){sections=(mtvn.btg.util.String.isDefined(a_defaultSections)?a_defaultSections:mtvn.btg.util.Sections.getAdSections());if(mtvn.btg.util.String.isDefined(sections)){data.sections=mtvn.btg.util.String.stripFileExtension(sections);}};this.getAd=function(a_data){var ad;if(hasInternationalAd&&a_data.adType==="InternationalAd"){ad=new mtvn.btg.ads.InternationalAd(config.International);data.tile++;a_data=this.setReloadableAdData(a_data);if(mtvn.btg.util.String.isDefined(a_data.sections)){a_data.sections=mtvn.btg.util.String.stripFileExtension(a_data.sections);}
mtvn.btg.util.Object.copyProperties(data,a_data);ad.init(a_data);ads.push(ad);}
else if(hasDoubleClickAd){ad=new mtvn.btg.ads.DoubleClickAd(config.DoubleClick);data.tile++;a_data=this.setReloadableAdData(a_data);if(mtvn.btg.util.String.isDefined(a_data.sections)){a_data.sections=mtvn.btg.util.String.stripFileExtension(a_data.sections);}
mtvn.btg.util.Object.copyProperties(data,a_data);ad.init(a_data);ads.push(ad);}else{document.write("<!-- [ERROR: Ads not enabled. Please check your config or placeAd() method call!] -->");return null;}
return ad;};this.getAdUrl=function(a_data){return this.getAd(a_data).getUrl();};this.setReloadableAdData=function(a_data)
{if(mtvn.btg.util.String.isDefined(a_data.reloadableAdId)&&mtvn.btg.util.String.isDefined(this.reloadableAds[a_data.reloadableAdId])){++counter;a_data.ord=data.ord=(mtvn.btg.util.String.isDefined(this.reloadableAds[a_data.reloadableAdId].tile)&&this.hasReloadComplete()?mtvn.btg.util.Math.random(100000000000000000,999999999999999999):data.ord);a_data.tile=data.tile=this.reloadableAds[a_data.reloadableAdId].tile=(mtvn.btg.util.String.isDefined(this.reloadableAds[a_data.reloadableAdId].tile)?this.reloadableAds[a_data.reloadableAdId].tile:data.tile);}
if(mtvn.btg.util.String.isDefined(a_data.loadOrder))
a_data.tile=a_data.loadOrder;return a_data;}
this.hasReloadComplete=function(){var totAdCount=0;for(var i in this.reloadableAds)
totAdCount++;if(counter>totAdCount){counter=1;return true;}
return false;}};mtvn.btg.ads.AtomAd=function(config){this.config=config;this.type="AtomAd";};mtvn.btg.ads.AtomAd.prototype={placeAd:function(data){document.write("[mtvn.btg.ads.AtomAd.placeAd() Stub Method]");}};mtvn.btg.ads.DoubleClickAd=function(config){this.config=config;this.type="DoubleClickAd";this.id;this.server="ad.doubleclick.net";this.ssl=false;this.dartSite;this.contentType="adj";this.mediaType="standard";this.sections;this.keyValues="";this.size;this.zoneOverride=null;this.tile;this.positionThreshold;this.ord;this.additionalKeyValues=[];this.position;this.partner;this.exclusions=[];this.reservedKeyValues={};this.autoDcopt=(config.autoDcopt)?true:false;if(mtvn.btg.util.Object.isDefined(mtvn.btg.ads.AdManager)&&!mtvn.btg.ads.AdManager.dcoptOn){mtvn.btg.ads.AdManager.dcoptOn=false;}
this.isDevEnv=false;if(mtvn.btg.globalvars.IS_TOP_ACCESSIBLE&&top.location.hostname.indexOf("mtvi.com")>-1){this.isDevEnv=true;}
for(var i in config){if(mtvn.btg.util.String.isDefined(config[i])&&(typeof(config[i])=='string'||typeof(config[i])=='number')){if(i=="sections"){this.setSections(config[i]);}
else if(i=="keyValues"){this.setKeyValues(config[i]);}
else if(i=="positionThreshold"){this.setPositionThreshold(config[i]);}
else{this[i]=config[i];}}}};mtvn.btg.ads.DoubleClickAd.prototype={setZoneOverride:function(str){this.zoneOverride=str;},setId:function(str){this.id=str;},setServer:function(str){this.server=str;},setSsl:function(){this.ssl=true;},setDartSite:function(str){this.dartSite=str;},setContentType:function(str){this.contentType=str;},setMediaType:function(str){this.mediaType=str;},setPosition:function(str){this.position=str;},setSections:function(str){str=str.replace(/[^\/\w=!;|-]/g,"_");while(str.match(/\/\d/)){str=str.replace(/\/\d/,RegExp.lastMatch.substring(0,1)+"_"+RegExp.lastMatch.substring(1,2));}
str=str.replace(/^\d/,"_"+str.match(/^\d/,"_"));this.sections=str.replace(/^\/+|\/+$/g,'');if(this.sections.indexOf('.')>-1){this.sections=this.sections.split('.')[0];}},setKeyValues:function(str){str=str.replace(/[^\w=!;|-]/g,"_");this.keyValues=str.replace(/^;+|;+$/g,'');if(this.keyValues.indexOf("mtype=")>-1){this.setMediaType(this.getKeyValue("mtype="));}
if(this.keyValues.indexOf("pos=")>-1){this.setPosition(this.getKeyValue("pos="));}else if(this.keyValues.indexOf("threshold=")>-1){this.setPositionThreshold(this.getKeyValue("threshold="));}},setSize:function(str){this.size=str;},setTile:function(num){this.tile=num;},setPositionThreshold:function(num){if(isNaN(parseInt(num))){this.positionThreshold=null;}else{this.positionThreshold=parseInt(num);}},setOrd:function(num){this.ord=num;},setPartner:function(str){this.partner=str;},addExclusionCategory:function(str){str=str.replace(/^;+|;+$/g,'');this.exclusions.push('!category='+str);},addKeyValues:function(str){if(mtvn.btg.util.String.isDefined(str)&&str.indexOf('=')>-1){this.additionalKeyValues.push(str);}},appendKeyValue:function(str1,str2){if(!mtvn.btg.util.String.isDefined(str1))str1="";if(!mtvn.btg.util.String.isDefined(str2))str2="";str1=str1.replace(/^;+|;+$/g,'');str2=str2.replace(/^;+|;+$/g,'');if(str1.indexOf('=')>-1)str2+=";"+str1;str2=str2.replace(/^;+|;+$/g,'');return str2;},getProtocol:function(){return this.ssl?'https://':'http://';},getPosition:function(){var placement="unk";if(mtvn.btg.util.String.isDefined(this.position)){if(this.position.indexOf("atf")>-1){placement="atf";}else if(this.position.indexOf("btf")>-1){placement="btf";}}else{if(mtvn.btg.util.String.isDefined(this.positionThreshold)){placement=(this.tile<=this.positionThreshold)?"atf":"btf";}}
return placement;},getKeyValue:function(key){var value;if(this.keyValues.indexOf(key)>-1){var temp=this.keyValues.split(key);if(temp.length>0){if(temp[1].indexOf(";")>-1){value=temp[1].substring(0,temp[1].indexOf(";"));}else{value=temp[1];}}}
return value;},getSections:function(){return this.sections;},getContentTypeAbbreviation:function(){var abbr="";if(this.contentType=="pfadx")abbr="p";if(this.contentType=="adj")abbr="j";if(this.contentType=="adi")abbr="i";if(this.contentType=="adx")abbr="x";if(this.contentType=="ad")abbr="a";return abbr;},getExclusions:function(){return this.exclusions.join(';');},formatZone:function(){var posTypeTag=this.getPosition()+'_'+this.getContentTypeAbbreviation()+'_'+this.mediaType.substr(0,1);var zoneValues=posTypeTag+"/";var secValues=this.getSections();if(mtvn.btg.util.String.isDefined(this.keyValues)){if(this.keyValues.indexOf("partner=")>-1){var partner=this.getKeyValue("partner=");if(mtvn.btg.util.String.isDefined(partner)){zoneValues+=partner+"/";this.addExclusionCategory(partner);this.addExclusionCategory("partner");}else{this.addKeyValues("partner=null");}}
if(this.keyValues.indexOf("vertical=")>-1){var vertical=this.getKeyValue("vertical=");if(mtvn.btg.util.String.isDefined(vertical)){secValues=vertical+"/"+secValues;this.setSections(secValues);}}
if(this.keyValues.indexOf("synd=")>-1){var synd=this.getKeyValue("synd=");if(mtvn.btg.util.String.isDefined(synd))this.addExclusionCategory(synd);}}
zoneValues=zoneValues.replace(/^\d/,"_"+zoneValues.match(/^\d/,"_"));return zoneValues+secValues;},formatSectionValues:function(){try{var parts=this.sections.split('/');}catch(e){parts=["[ERROR: Sections Not Defined!]"];}
var count=0;var sections=[];for(x=0;x<parts.length;x++){if(mtvn.btg.util.String.isDefined(parts[x])){sections.push('sec'+count+'='+parts[x]);count++;}}
return sections.join(';');},formatKeyValues:function(){var extraKeyVals=this.getAdditionalKeyValues();if(mtvn.btg.util.String.isDefined(extraKeyVals)){this.keyValues+=";"+extraKeyVals;}
if(this.keyValues.indexOf("pos=")==-1){this.keyValues+=";pos="+this.getPosition();}
if(this.keyValues.indexOf("tag=")==-1){this.keyValues+=";tag="+this.contentType;}
if(this.keyValues.indexOf("mtype=")==-1){this.keyValues+=";mtype="+this.mediaType;}
this.keyValues=this.formatReserved();if(mtvn.btg.util.String.isDefined(this.size)&&this.keyValues.indexOf("sz=")==-1){this.keyValues+=";sz="+this.size;}
if(this.tile>=0&&this.keyValues.indexOf("tile=")==-1){this.keyValues+=";tile="+this.tile;}
var demoVal=mtvn.btg.util.Cookie.read('qcDemo');if(mtvn.btg.util.String.isDefined(demoVal)&&this.keyValues.indexOf("demo=D")==-1){this.keyValues+=";"+unescape(demoVal);}
if(mtvn.btg.util.String.isDefined(this.reservedKeyValues.dcmt)){this.keyValues+=";dcmt="+this.reservedKeyValues.dcmt;}
if(this.autoDcopt&&this.tile=="1"){this.keyValues+=";dcopt=ist";mtvn.btg.ads.AdManager.dcoptOn=true;}
if(mtvn.btg.util.String.isDefined(this.reservedKeyValues.dcopt)){if(mtvn.btg.ads.AdManager.dcoptOn){if(this.tile!="1"&&this.isDevEnv){this.keyValues+=";[ERROR: attempt to set dcopt value more than once per page!]";}}
else{this.keyValues+=";dcopt="+this.reservedKeyValues.dcopt;mtvn.btg.ads.AdManager.dcoptOn=true;}}
if(this.exclusions.length>0){this.keyValues+=";"+this.getExclusions();}
if(mtvn.btg.util.String.isDefined(this.reservedKeyValues.dcove)){this.keyValues+=";dcove="+this.reservedKeyValues.dcove;}
this.keyValues=this.keyValues.replace(/^;+|;+$/g,'');return this.keyValues;},formatReserved:function(){var keyvals=this.keyValues;var reserved=["dcmt","dcopt","dcove"];for(var i=0;i<reserved.length;i++){if(keyvals.indexOf(reserved[i]+"=")>-1){var key=this.getKeyValue(reserved[i]+"=");var tempKeys=keyvals.split(reserved[i]+"="+key);for(var x=0;x<tempKeys.length;x++){tempKeys[x]=tempKeys[x].replace(/^;+|;+$/g,'');}
this.reservedKeyValues[reserved[i]]=key;keyvals=tempKeys.join(';');}}
return keyvals;},formatUValues:function(str){var uvals=str;uvals=uvals.replace(/\;/g,'|');uvals=uvals.replace(/\=/g,'-');return uvals;},getAdditionalKeyValues:function(){return this.additionalKeyValues.join(';');},getValues:function(){var zone=mtvn.btg.util.String.isDefined(this.zoneOverride)?this.zoneOverride:this.formatZone();var keyVals=this.formatKeyValues();var secVals=this.formatSectionValues();var uVals=this.formatUValues(keyVals);if(uVals!=""){uVals="u="+uVals;}
return{id:this.id,protocol:this.getProtocol(),server:this.server,dartSite:this.dartSite,contentType:this.contentType,mediaType:this.mediaType,zone:zone,sections:secVals,keyValues:keyVals,uValues:uVals,ord:this.ord};},formatUrl:function(values){var target=[values.protocol+values.server,values.contentType,values.dartSite,values.zone];var url=target.join("/");var vals=[url,values.sections];if(mtvn.btg.util.String.isDefined(values.keyValues)){vals.push(values.keyValues);}
if(mtvn.btg.util.String.isDefined(values.uValues)){vals.push(values.uValues);}
if(values.ord>0){vals.push('ord='+values.ord+"?");}
return vals.join(";");},getWidth:function(){return this.size.substr(0,this.size.indexOf("x"));},getHeight:function(){return this.size.substr(this.size.indexOf("x")+1,this.size.length);},getUrl:function(){return this.formatUrl(this.getValues());},getJson:function(){var values=this.getValues();values.url=this.formatUrl(values);return values;},getXml:function(){var xml=[];var values=this.getValues();values.url=this.formatUrl(values);for(var i in values){if(typeof(values[i]=='string')){xml.push('<'+i+'>'+'</'+values[i]+'>');}}
return'<doubleClickAd>'+xml.join('')+'</doubleClickAd>';},placeAd:function(a_data){if(this.contentType=="adi"){var frameId="ad"+this.tile;var dimensions=this.size.split('x');var htmlOut='<ifr'+'ame id="'+frameId+'" name="'+frameId+'" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" width="'+dimensions[0]+'" height="'+dimensions[1]+'" src="'+this.getUrl()+'"><\/ifr'+'ame>';if(mtvn.btg.globalvars.IS_TOP_ACCESSIBLE&&mtvn.btg.util.String.queryStringToObject(top.location.search).mockupMode=='true'){htmlOut=mtvn.btg.util.String.mockItUp(htmlOut);}
if(mtvn.btg.util.String.isDefined(a_data)&&mtvn.btg.util.String.isDefined(a_data.reloadableAdId))
return htmlOut;else if(typeof exposeTestFunctionNames=='undefined')
document.write(htmlOut);}else{var htmlOut='<scr'+'ipt type="text/javascript" src="'+this.getUrl()+'"><\/scr'+'ipt>';if(mtvn.btg.globalvars.IS_TOP_ACCESSIBLE&&mtvn.btg.util.String.queryStringToObject(top.location.search).mockupMode=='true'){htmlOut=mtvn.btg.util.String.mockItUp(htmlOut);}
if(mtvn.btg.util.String.isDefined(a_data)&&mtvn.btg.util.String.isDefined(a_data.reloadableAdId))
return htmlOut;else if(typeof exposeTestFunctionNames=='undefined')
document.write(htmlOut);}},init:function(data){if(typeof(data)==='object'){if(mtvn.btg.util.String.isDefined(data.zoneOverride))this.setZoneOverride(data.zoneOverride);if(mtvn.btg.util.String.isDefined(data.id))this.setId(data.id);if(mtvn.btg.util.String.isDefined(data.server))this.setServer(data.server);if(mtvn.btg.util.String.isDefined(data.ssl))this.setSsl(data.ssl);if(mtvn.btg.util.String.isDefined(data.dartSite))this.setDartSite(data.dartSite);if(mtvn.btg.util.String.isDefined(data.contentType))this.setContentType(data.contentType);if(mtvn.btg.util.String.isDefined(data.mediaType))this.setMediaType(data.mediaType);if(mtvn.btg.util.String.isDefined(data.position))this.setPosition(data.position);if(mtvn.btg.util.String.isDefined(data.sections))this.setSections(data.sections);if(mtvn.btg.util.String.isDefined(data.keyValues))this.setKeyValues(data.keyValues);if(mtvn.btg.util.String.isDefined(data.size)){this.setSize(data.size);}
else{this.setSize("[ERROR: Size Not Defined!]");}
if(mtvn.btg.util.String.isDefined(data.tile))this.setTile(data.tile);if(mtvn.btg.util.String.isDefined(data.positionThreshold))this.setPositionThreshold(data.positionThreshold);if(mtvn.btg.util.String.isDefined(data.ord))this.setOrd(data.ord);if(mtvn.btg.util.String.isDefined(data.partner))this.setPartner(data.partner);}}};mtvn.btg.ads.InternationalAd=function(config){this.config=config;this.type="InternationalAd";this.ad=new mtvn.btg.ads.DoubleClickAd(config);this.logvalue="0";this.demovalue="none";this.eventvalue="none";this.regionvalue="none";this.keywordvalue="none";this.vidvalue="none";this.vid_typevalue="none";this.ad.formatSectionValues=function(){var parts=this.sections.split('/');var sec0="none";var sec1="none";var secn="none";var temparr=[];if(mtvn.btg.util.String.isDefined(parts[0])){sec0=parts[0];}else{sec0="_hp";};if(mtvn.btg.util.String.isDefined(parts[1])){sec1=parts[1];};if(mtvn.btg.util.String.isDefined(parts[2])){for(x=2;x<parts.length;x++){if(mtvn.btg.util.String.isDefined(parts[x])){temparr.push(parts[x]);}}
secn=temparr.join("/");};var result="sec0="+sec0+";sec1="+sec1+";secN="+secn;return result;};this.ad.formatUValues=function(){return"";}
this.init=function(data){}};mtvn.btg.ads.InternationalAd.prototype={placeAd:function(data){this.ad.sections=data.sections;this.ad.setSize(data.size);this.ad.setTile(data.tile);this.ad.setPositionThreshold(data.tile);this.addInternationalValues(data);this.ad.setOrd(data.ord);if(data.getUrl)
{if(typeof exposeTestFunctionNames=='undefined')document.write(this.ad.getUrl());}
else
{var htmlOut='<br><scr'+'ipt type="text/javascript" src="'+this.ad.getUrl()+'"><\/scr'+'ipt>';if(mtvn.btg.globalvars.IS_TOP_ACCESSIBLE&&mtvn.btg.util.String.queryStringToObject(top.location.search).mockupMode=='true'){htmlOut=mtvn.btg.util.String.mockItUp(htmlOut);}
if(typeof exposeTestFunctionNames=='undefined')document.write(htmlOut);}},addInternationalValues:function(data){if(mtvn.btg.util.String.isDefined(data.log)){this.ad.addKeyValues("log="+data.log);};if(mtvn.btg.util.String.isDefined(data.demo)){this.ad.addKeyValues("demo="+data.demo);};if(mtvn.btg.util.String.isDefined(data.event)){this.ad.addKeyValues("event="+data.event);};if(mtvn.btg.util.String.isDefined(data.keyword)){this.ad.addKeyValues("search_kw="+data.keyword);};if(mtvn.btg.util.String.isDefined(data.vid)){this.ad.addKeyValues("vid="+data.vid);};if(mtvn.btg.util.String.isDefined(data.vid_type)){this.ad.addKeyValues("vid_type="+data.vid_type);};if(mtvn.btg.util.String.isDefined(data.region)){this.ad.addKeyValues("region="+data.region);};this.ad.addKeyValues("url="+escape(data.sections));}};var com=typeof com==='object'?com:{};com.mtvi=typeof com.mtvi==='object'?com.mtvi:{};com.mtvi.reporting=typeof com.mtvi.reporting==='object'?com.mtvi.reporting:{};com.mtvi.ads=typeof com.mtvi.ads==='object'?com.mtvi.ads:{};com.mtvi.config=typeof com.mtvi.config==='object'?com.mtvi.config:{};com.mtvi.util=typeof com.mtvi.util==='object'?com.mtvi.util:{};com.mtvi.util.IFrameReloader=typeof com.mtvi.util.IFrameReloader==='object'?com.mtvi.util.IFrameReloader:{};com.mtvi.metadata=typeof com.mtvi.metadata==='object'?com.mtvi.metadata:{};com.mtvi.reporting.Controller=new function(){this.initalized=false;this.initialize=function(){mtvn.btg.Controller.init();this.initalized=true;};this.sendCall=function(data){mtvn.btg.Controller.sendPageCall(data);};this.sendLinkEvent=function(data){mtvn.btg.Controller.sendLinkEvent(data);};this.registerLinks=function(){return true;};this.setConfig=function(data){for(var i in data){mtvn.btg.config.ReportSettings.Omniture[i]=data[i];}
return true};this.addRegisterLinks=function(){return true;}
this.setDefaultData=function(k,v){if(mtvn.btg.util.String.isDefined(k)){mtvn.btg.config.ReportSettings.Omniture[k]=mtvn.btg.util.String.isDefined(v)?v:'';return true}
else{return false;}}};com.mtvi.reporting.Dispatcher=function(){this.getValOnce=function(v,c,e){return true};this.sendCall=function(data){data=(mtvn.btg.util.Object.isDefined(data)?data:(mtvn.btg.util.Object.isDefined(com.mtvi.config.SectionSetup)?com.mtvi.config.SectionSetup:{}));if(!com.mtvi.reporting.Controller.initalized){mtvn.btg.Controller.init();com.mtvi.reporting.Controller.initalized=true;}
mtvn.btg.Controller.sendPageCall(data);this.clearAllVars();};this.sendLinkEvent=function(data){var objOmniture=(com.mtvi.reporting.Controller.initalized?mtvn.btg.reporting.omniture.Hcode:mtvn.btg.config.ReportSettings.Omniture);for(var i=1;i<=50;i++){objOmniture["eVars"+i]='';objOmniture["prop"+i]='';if(i<6){objOmniture["hier"+i]='';}}
objOmniture["pageName"]='';objOmniture["channel"]='';if(!com.mtvi.reporting.Controller.initalized){mtvn.btg.Controller.init();com.mtvi.reporting.Controller.initalized=true;}
mtvn.btg.Controller.sendLinkEvent(data);};this.registerLinks=function(){return true;}
this.setAttribute=function(k,v){if(mtvn.btg.util.String.isDefined(k)){var objOmniture=(com.mtvi.reporting.Controller.initalized?mtvn.btg.reporting.omniture.Hcode:mtvn.btg.config.ReportSettings.Omniture);objOmniture[k]=mtvn.btg.util.String.isDefined(v)?v:'';return true}
else{return false;}};this.getAttribute=function(k){var objOmniture=(com.mtvi.reporting.Controller.initalized?mtvn.btg.reporting.omniture.Hcode:mtvn.btg.config.ReportSettings.Omniture);return objOmniture[k];};this.setValues=function(data){for(var i in data){this.setAttribute(i,data[i]);}
return true};this.setDefaultData=function(){};this.clearProps=function(){try{for(var p=1;p<=50;p++){this.widget.setAttribute("prop"+p,"");}}catch(e){}};this.clearAllVars=function(){var objOmniture=(com.mtvi.reporting.Controller.initalized?mtvn.btg.reporting.omniture.Hcode:mtvn.btg.config.ReportSettings.Omniture);try{for(var p=1;p<=50;p++){objOmniture["prop"+p]="";}
for(var e=1;e<=50;e++){objOmniture["eVars"+e]="";}
for(var h=1;h<=5;h++){objOmniture["hier"+h]="";}
objOmniture["pageName"]="";objOmniture["channel"]="";}catch(e){}}}
com.mtvi.reporting.MediaPlayer={addPlayer:function(id){var player=mtvn.btg.reporting.MediaPlayer.addPlayer(id);return player['id'];}}
com.mtvi.ads.AdManager=new function(){var adType="";var reloadInterval=300000;this.setDartSite=function(a_dartSite){try{if(mtvn.btg.config.AdSettings.DoubleClick.enabled&&!mtvn.btg.util.String.isDefined(mtvn.btg.config.AdSettings.DoubleClick.dartSite)){mtvn.btg.config.AdSettings.DoubleClick.dartSite=a_dartSite;}}
catch(e){}};this.setPositionThreshold=function(a_positionThreshold){try{if(mtvn.btg.config.AdSettings.DoubleClick.enabled&&!mtvn.btg.util.String.isDefined(mtvn.btg.config.AdSettings.DoubleClick.positionThreshold)){mtvn.btg.config.AdSettings.DoubleClick.positionThreshold=a_positionThreshold;}}
catch(e){}};this.setSiteName=function(a_siteName){try{if(mtvn.btg.config.AdSettings.DoubleClick.enabled&&!mtvn.btg.util.String.isDefined(mtvn.btg.config.AdSettings.DoubleClick.siteName)){mtvn.btg.config.AdSettings.DoubleClick.siteName=a_siteName;}}
catch(e){}};this.setDefaultSections=function(a_defaultSections){if(mtvn.btg.util.String.isDefined(a_defaultSections))
mtvn.btg.config.AdSettings.DoubleClick.sections=a_defaultSections;};this.setKeyValues=function(a_keyValues){try{if(mtvn.btg.config.AdSettings.DoubleClick.enabled&&!mtvn.btg.util.String.isDefined(mtvn.btg.config.AdSettings.DoubleClick.keyValues)){mtvn.btg.config.AdSettings.DoubleClick.keyValues=a_keyValues;}}
catch(e){}};this.placeAd=function(a_adParametersObj){try{if(!com.mtvi.reporting.Controller.initalized){mtvn.btg.Controller.init();com.mtvi.reporting.Controller.initalized=true;}
if(a_adParametersObj.adType=="InternationalAd"){a_adParametersObj.sections=mtvn.btg.util.Sections.getAdSections();};mtvn.btg.ads.AdManager.placeAd(a_adParametersObj);}
catch(e){}};this.setServer=function(a_server){try{if(mtvn.btg.config.AdSettings.DoubleClick.enabled&&!mtvn.btg.util.String.isDefined(mtvn.btg.config.AdSettings.DoubleClick.server)){mtvn.btg.config.AdSettings.DoubleClick.server=a_server;}}
catch(e){}};this.setSsl=function(){try{if(mtvn.btg.config.AdSettings.DoubleClick.enabled&&!mtvn.btg.util.String.isDefined(mtvn.btg.config.AdSettings.DoubleClick.ssl)){mtvn.btg.config.AdSettings.DoubleClick.ssl=true;}}
catch(e){}};this.setDefaultContentType=function(a_defaultContentType){try{if(mtvn.btg.config.AdSettings.DoubleClick.enabled&&!mtvn.btg.util.String.isDefined(mtvn.btg.config.AdSettings.DoubleClick.contentType)){mtvn.btg.config.AdSettings.DoubleClick.contentType=a_defaultContentType;}}
catch(e){}};this.setZoneOverride=function(a_zone){try{if(mtvn.btg.config.AdSettings.DoubleClick.enabled&&!mtvn.btg.util.String.isDefined(mtvn.btg.config.AdSettings.DoubleClick.zoneOverride)){mtvn.btg.config.AdSettings.DoubleClick.zoneOverride=a_zone;}}
catch(e){}};this.IFrameAds=[];this.placeIFrameAd=function(a_adParametersObj){try{var ad=this.getAd(a_adParametersObj);var adReloader=new com.mtvi.util.IFrameReloader(a_adParametersObj.containerId);adReloader.src=ad.getUrl();adReloader.width=ad.getWidth();adReloader.height=ad.getHeight();adReloader.write();if(a_adParametersObj.reloadAd){this.IFrameAds.push(adReloader);}}catch(e){}};this.setReloadInterval=function(num){try{reloadInterval=parseInt(num);mtvn.btg.util.Events.addListener(window,"load",function(){try{window.setInterval("com.mtvi.ads.AdManager.reloadIFrameAds()",reloadInterval);}catch(e){}});}catch(e){}};this.setAdClass=function(a_class){if(a_class=="InternationalAd"){adType="InternationalAd";}};this.getAdById=function(a_adId){return null;};this.getDartSite=function(){var retVal=null;try{if(mtvn.btg.util.String.isDefined(mtvn.btg.ads.AdManager.data.dartSite)){retVal=mtvn.btg.ads.AdManager.data.dartSite;}}
catch(e){try{retVal=mtvn.btg.config.AdSettings.DoubleClick.dartSite;}
catch(e){}}
return retVal;};this.getAd=function(a_adParametersObj){var retVal=null;try{retVal=mtvn.btg.ads.AdManager.getAd(a_adParametersObj);}
catch(e){}
return retVal;};this.getReloadInterval=function(){try{return reloadInterval;}catch(e){}};this.reloadIFrameAds=function(){for(var x=0;x<this.IFrameAds.length;x++){this.reloadIFrameAd(x);}};this.reloadIFrameAd=function(index){var src=this.IFrameAds[index].src;if(index==0)ord=Math.random(100000000000000000,999999999999999999);if(src.indexOf("ord=")>-1){src=src.split("ord=")[0]+"ord="+ord+"?";}
this.IFrameAds[index].src=src;this.IFrameAds[index].reload();};this.setZone=function(zone){};this.getNewAd=function(adObject){};this.populateNamesValuesObj=function(nameValues){};}
com.mtvi.ads.DoubleClickAd=function(params){};com.mtvi.ads.DoubleClickAd.prototype={setZoneOverride:function(str){},setDartSite:function(str){},setOrd:function(num){},placeAd:function(){},getXml:function(){return null;},getJson:function(){return null;},getUrl:function(){return null;},getSections:function(){return null;},setSize:function(str){},setSections:function(str){},setContentType:function(str){},setKeyValues:function(str){},setTile:function(num){},setPositionThreshold:function(num){},setServer:function(str){},setSsl:function(){},setMediaType:function(str){},setPosition:function(str){},setPartner:function(str){},setId:function(str){}};com.mtvi.reporting.FluxWidgeted={setVars:function(){return true;}};com.mtvi.reporting.GoogleAnalytics={makeCall:function(id,uri){return true;}};com.mtvi.reporting.QuantCast=new function(){this.sendQuantCastCall=function(a_labels){return true;};};com.mtvi.reporting.Search={setVars:function(obj){return true;},sendLinkEvent:function(obj){return true;},setConversion:function(){return true;},setSynConversion:function(){return true;}};com.mtvi.util={toObject:function(string,delimiter){var delimiter=delimiter?delimiter:',';var array=string.split(delimiter);var object={};for(var x=0;x<array.length;x++){var pairs=array[x].split('=');object[pairs[0]]=pairs[1];}
return object;},queryStringToHash:function(string){return mtvn.btg.util.String.queryStringToObject(string);},isDefined:function(value){return mtvn.btg.util.String.isDefined(value);},readCookie:function(name){return mtvn.btg.util.Cookie.read(name);},deleteCookie:function(name){mtvn.btg.util.Cookie.remove(name);},crawlNodes:function(node){return mtvn.btg.util.Window.getNodeLinkName(node);},addOnloadEvent:function(func){return mtvn.btg.util.Events.addListener(window,"load",func);}}
com.mtvi.reporting.ComScore=new function(){this.sendComScoreCall=function(){}};com.mtvi.metadata={getDefaultPageName:function(){var pageName='';try{pageName=mtvn.btg.config.ReportSettings.defaultPageName;if(pageName!='/'){pageName=mtvn.btg.util.String.charRtrim(pageName,'/');}
if(pageName!='/'&&pageName.indexOf('/')==0){pageName=pageName.substring(1);}
if(pageName.indexOf('/')==-1&&pageName.indexOf(mtvn.btg.config.ReportSettings.indexFileName)!=-1){pageName='home/'+pageName;}}
catch(e){return null;}
return pageName;},getDefaultHierarchy:function(){try{var hier=this.getDefaultPageName();if(hier=='/')hier='';}
catch(e){return null;}
return hier;},getDefaultChannel:function(){try{var channel=this.getDefaultPageName();if(channel!='/')
channel=channel.split('/')[0];}
catch(e){return null;}
return channel;}};com.mtvi.util.IFrameReloader=function(containerId){try{this.containerId=containerId;this.id="IFrameReloader"+Math.random(0,1000000);this.width;this.height;this.src;this.lastLoaded=0;}catch(e){}};com.mtvi.util.IFrameReloader.prototype={reload:function(){try{var date=new Date();var now=(date.getMinutes()*60000)+(date.getSeconds()*1000);var elapsed=now-this.lastLoaded;if(elapsed>5000){var n=document.getElementById(this.containerId);var i=document.createElement("iframe");i.id=this.id;i.width=this.width;i.height=this.height;i.style.width=this.width;i.style.height=this.height;i.src=this.src;i.frameBorder="0";i.scrolling="no";i.marginheight="0";i.marginwidth="0";i.style.margin="0";i.style.zIndex="99";i.style.border="0";i.style.borderWidth="0px";n.removeChild(document.getElementById(this.id));n.appendChild(i);}
this.lastLoaded=now;}catch(e){}},write:function(){try{var html='<iframe id="'+this.id+'" src="'+this.src+'" width="'+this.width+'" height="'+this.height+'" frameborder="0" scrolling="no" marginheight="0" marginwidth="0"><\/iframe>';if(mtvn.btg.globalvars.IS_TOP_ACCESSIBLE&&mtvn.btg.util.String.queryStringToObject(top.location.search).mockupMode=='true'){html=mtvn.btg.util.String.mockItUp(html);}
document.write(html);}catch(e){}}};
mtvn.btg.config.ReportSettings={
	version : '2.0.284',
	Omniture:{
		enabled: true,
		account: 'via365Gay,vialogoonline',
		charSet: 'ISO-8859-1',
		dynamicAccountSelection: 'true',
		dynamicAccountList:  'vialogoonlinedev=inhouse,mtvi.com',
		linkInternalFilters: 'javascript:,365gay.com,mtvi.com',
		videoViewEventDisable: false,
		enableTimeParting: true,
		trackInlineStats: false
	},
	Nielsen:{
		enabled:       true,
		cid:      'us-300231',
		videoCensusId: 'vc,b01'
	},
	GoogleAnalytics:{
		enabled:    false,
		account:    '',
		reportMode: '' // iframe/direct
	},
	QuantCast:{
		enabled:    true,
		labels:     'MTVN Global Digital Network,MTVN Global Digital Proper,MTVN Music and Logo Global Network,MTVN Music and Logo Global Proper,MTVN Music and Logo Domestic,Logo Online Network,365Gay Site,365Gay Site,Logo Online Network,MTVN Global Digital Network,MTVN Global Digital Proper,MTVN Music and Logo Domestic,MTVN Music and Logo Global Network,MTVN Music and Logo Global Proper,365Gay Site,Logo Online Network,MTVN Global Digital Network,MTVN Global Digital Proper,MTVN Music and Logo Domestic,MTVN Music and Logo Global Network,MTVN Music and Logo Global Proper,365Gay Site,Logo Online Network,MTVN Global Digital Network,MTVN Global Digital Proper,MTVN Music and Logo Domestic,MTVN Music and Logo Global Network,MTVN Music and Logo Global Proper,365Gay Site,Logo Online Network,MTVN Global Digital Network,MTVN Global Digital Proper,MTVN Music and Logo Domestic,MTVN Music and Logo Global Network,MTVN Music and Logo Global Proper,365Gay Site,Logo Online Network,MTVN Global Digital Network,MTVN Global Digital Proper,MTVN Music and Logo Domestic,MTVN Music and Logo Global Network,MTVN Music and Logo Global Proper,365Gay Site,Logo Online Network,MTVN Global Digital Network,MTVN Global Digital Proper,MTVN Music and Logo Domestic,MTVN Music and Logo Global Network,MTVN Music and Logo Global Proper,365Gay Site,Logo Online Network,MTVN Global Digital Network,MTVN Global Digital Proper,MTVN Music and Logo Domestic,MTVN Music and Logo Global Network,MTVN Music and Logo Global Proper,365Gay Site,Logo Online Network,MTVN Global Digital Network,MTVN Global Digital Proper,MTVN Music and Logo Domestic,MTVN Music and Logo Global Network,MTVN Music and Logo Global Proper,365Gay Site,Logo Online Network,MTVN Global Digital Network,MTVN Global Digital Proper,MTVN Music and Logo Domestic,MTVN Music and Logo Global Network,MTVN Music and Logo Global Proper',
		reportMode: 'ads' //direct/ads
	},
	ComScore:{
		enabled:    true
	}
};
mtvn.btg.config.AdSettings={
	DoubleClick:{
		enabled:  true,
		dartSite: 'logoonline.vt'
	},
	International:{
		enabled:  false,
		dartSite: ''
	},
	QuantCast:{ 
		enabled:  true
	}
};
/* Do not change above this line */ 

var pageName = "_365Gay"+location.pathname;

if (location.pathname.match(/\/$/) && location.pathname.length==1)
	pageName = pageName.substr(0,pageName.length-1);

com.mtvi.reporting.Account={
	name:'via365Gay,vialogoonline',
	dynamicAccountSelection:'true',
	dynamicAccountList:'vialogoonlinedev=inhouse,mtvi.com',
	linkInternalFilters:'javascript:,365gay.com,mtvi.com',
	registerLinks: true
};
// match everything after the http://www.365gay.com/ (or whatever) and before a # or a ?
currentLocation = document.location.toString().match(/^http:\/\/[^\/]+\/(.*?)\/?(#.*)?(\?.*)?$/)[1];
if (currentLocation == '') currentLocation = '_hp'
mtvn.btg.config.AdSettings.DoubleClick.sections = '_365gay/' + currentLocation

com.mtvi.reporting.Controller.initialize();










