var Url={encode:function(a){if(!a&&a!=null){return""}try{a=encodeURI(a)}catch(b){a=escape(a)}return a},decode:function(a){if(!a&&a!=null){return""}try{a=decodeURI(a)}catch(b){a=unescape(a)}return a},encodeComponent:function(a){if(!a&&a!=null){return""}try{a=encodeURIComponent(a)}catch(b){a=escape(a)}return a},decodeComponent:function(a){if(!a&&a!=null){return""}try{a=decodeURIComponent(a)}catch(b){a=unescape(a)}return a}};var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(c){var a="";var k,h,f,j,g,e,d;var b=0;c=Base64._utf8_encode(c);while(b<c.length){k=c.charCodeAt(b++);h=c.charCodeAt(b++);f=c.charCodeAt(b++);j=k>>2;g=((k&3)<<4)|(h>>4);e=((h&15)<<2)|(f>>6);d=f&63;if(isNaN(h)){e=d=64}else{if(isNaN(f)){d=64}}a=a+this._keyStr.charAt(j)+this._keyStr.charAt(g)+this._keyStr.charAt(e)+this._keyStr.charAt(d)}return a},decode:function(c){var a="";var k,h,f;var j,g,e,d;var b=0;c=c.replace(/[^A-Za-z0-9\+\/\=]/g,"");while(b<c.length){j=this._keyStr.indexOf(c.charAt(b++));g=this._keyStr.indexOf(c.charAt(b++));e=this._keyStr.indexOf(c.charAt(b++));d=this._keyStr.indexOf(c.charAt(b++));k=(j<<2)|(g>>4);h=((g&15)<<4)|(e>>2);f=((e&3)<<6)|d;a=a+String.fromCharCode(k);if(e!=64){a=a+String.fromCharCode(h)}if(d!=64){a=a+String.fromCharCode(f)}}a=Base64._utf8_decode(a);return a},_utf8_encode:function(b){b=b.replace(/\r\n/g,"\n");var a="";for(var e=0;e<b.length;e++){var d=b.charCodeAt(e);if(d<128){a+=String.fromCharCode(d)}else{if((d>127)&&(d<2048)){a+=String.fromCharCode((d>>6)|192);a+=String.fromCharCode((d&63)|128)}else{a+=String.fromCharCode((d>>12)|224);a+=String.fromCharCode(((d>>6)&63)|128);a+=String.fromCharCode((d&63)|128)}}}return a},_utf8_decode:function(a){var b="";var d=0;var e=c1=c2=0;while(d<a.length){e=a.charCodeAt(d);if(e<128){b+=String.fromCharCode(e);d++}else{if((e>191)&&(e<224)){c2=a.charCodeAt(d+1);b+=String.fromCharCode(((e&31)<<6)|(c2&63));d+=2}else{c2=a.charCodeAt(d+1);c3=a.charCodeAt(d+2);b+=String.fromCharCode(((e&15)<<12)|((c2&63)<<6)|(c3&63));d+=3}}}return b}};if(!this.JSON){JSON={}}(function(){function f(n){return n<10?"0"+n:n}if(typeof Date.prototype.toJSON!=="function"){Date.prototype.toJSON=function(key){return this.getUTCFullYear()+"-"+f(this.getUTCMonth()+1)+"-"+f(this.getUTCDate())+"T"+f(this.getUTCHours())+":"+f(this.getUTCMinutes())+":"+f(this.getUTCSeconds())+"Z"};String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(key){return this.valueOf()}}var cx=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,escapable=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,gap,indent,meta={"\b":"\\b","\t":"\\t","\n":"\\n","\f":"\\f","\r":"\\r",'"':'\\"',"\\":"\\\\"},rep;function quote(string){escapable.lastIndex=0;return escapable.test(string)?'"'+string.replace(escapable,function(a){var c=meta[a];return typeof c==="string"?c:"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+string+'"'}function str(key,holder){var i,k,v,length,mind=gap,partial,value=holder[key];if(value&&typeof value==="object"&&typeof value.toJSON==="function"){value=value.toJSON(key)}if(typeof rep==="function"){value=rep.call(holder,key,value)}switch(typeof value){case"string":return quote(value);case"number":return isFinite(value)?String(value):"null";case"boolean":case"null":return String(value);case"object":if(!value){return"null"}gap+=indent;partial=[];if(Object.prototype.toString.apply(value)==="[object Array]"){length=value.length;for(i=0;i<length;i+=1){partial[i]=str(i,value)||"null"}v=partial.length===0?"[]":gap?"[\n"+gap+partial.join(",\n"+gap)+"\n"+mind+"]":"["+partial.join(",")+"]";gap=mind;return v}if(rep&&typeof rep==="object"){length=rep.length;for(i=0;i<length;i+=1){k=rep[i];if(typeof k==="string"){v=str(k,value);if(v){partial.push(quote(k)+(gap?": ":":")+v)}}}}else{for(var k in value){if(Object.hasOwnProperty.call(value,k)){v=str(k,value);if(v){partial.push(quote(k)+(gap?": ":":")+v)}}}}v=partial.length===0?"{}":gap?"{\n"+gap+partial.join(",\n"+gap)+"\n"+mind+"}":"{"+partial.join(",")+"}";gap=mind;return v}}if(typeof JSON.stringify!=="function"){JSON.stringify=function(value,replacer,space){var i;gap="";indent="";if(typeof space==="number"){for(i=0;i<space;i+=1){indent+=" "}}else{if(typeof space==="string"){indent=space}}rep=replacer;if(replacer&&typeof replacer!=="function"&&(typeof replacer!=="object"||typeof replacer.length!=="number")){throw new Error("JSON.stringify")}return str("",{"":value})}}if(typeof JSON.parse!=="function"){JSON.parse=function(text,reviver){var j;function walk(holder,key){var k,v,value=holder[key];if(value&&typeof value==="object"){for(var k in value){if(Object.hasOwnProperty.call(value,k)){v=walk(value,k);if(v!==undefined){value[k]=v}else{delete value[k]}}}}return reviver.call(holder,key,value)}cx.lastIndex=0;if(cx.test(text)){text=text.replace(cx,function(a){return"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})}if(/^[\],:{}\s]*$/.test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){j=eval("("+text+")");return typeof reviver==="function"?walk({"":j},""):j}throw new SyntaxError("JSON.parse")}}})();function CookieHandler(){this.setCookie=function(c,f,g,e){e=e?e:Server.getCookieDomain();var a="";var d="";var b=new Date();b.setTime(b.getTime()+(-1*1000));d="; expires="+b.toGMTString();if(typeof(g)!="undefined"){b.setTime(b.getTime()+(g*1000));a="; expires="+b.toGMTString()}document.cookie=c+"="+f+d+"; path=/";document.cookie=c+"="+f+a+"; path=/; domain="+e};this.getCookie=function(b){b=b+"=";var a=document.cookie.split(";");for(var d=0;d<a.length;d++){var e=a[d];while(e.charAt(0)==" "){e=e.substring(1,e.length)}if(e.indexOf(b)==0){return e.substring(b.length,e.length)}}return null};this.deleteCookie=function(a){this.setCookie(a,"",-1);this.setCookie(a,"",-1,document.location.hostname)}};var Util={ua:navigator.userAgent,isTouch:"createTouch" in document,redirect:function(a){var c=new CookieHandler();var b=document.referrer?document.referrer:"";c.setCookie("referrer",escape(b),60);top.location.href=a},isValidJson:function(jsonString){if(!jsonString){return false}return !(/[^,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]/.test(jsonString.replace(/"(\\.|[^"\\])*"/g,"")))&&eval("("+jsonString+")")},parseJSON:function(b){if(!b){return{}}try{return jQuery.evalJSON(b)}catch(a){return JSON.parse(b)}},toJSON:function(b){if(!b){return""}try{return jQuery.toJSON(b)}catch(a){return JSON.stringify(b)}},getCookie:function(b){var a=(new CookieHandler()).getCookie(b);a=a==null?"":Url.decodeComponent(a);if(this.isValidJson(a)){return this.parseJSON(a)}return a},setCookie:function(d,e,a,c){var b="";if(typeof(d)=="object"){b=this.toJSON(d)}else{if(typeof(d)=="string"||typeof(d)=="number"){b=d}else{return false}}(new CookieHandler()).setCookie(e,Url.encodeComponent(b),a,c||"")},deleteCookie:function(a){(new CookieHandler()).deleteCookie(a)},getJSONCookie:function(b){var a=(new CookieHandler()).getCookie(b);a=a==null?"":Url.decodeComponent(a);if(!this.isValidJson(a)){return{}}return this.parseJSON(a)},setJSONCookie:function(d,e,a,c){var b=this.toJSON(d);(new CookieHandler()).setCookie(e,Url.encodeComponent(b),a,c)},convert15To18:function(g){if(g==null||g.length==18){return g}else{if(g.length!=15){return null}else{var e="";for(var d=0;d<3;d++){var a=0;for(var b=0;b<5;b++){var f=g.charAt(d*5+b);if(f>="A"&&f<="Z"){a+=1<<b}}if(a<=25){e+="ABCDEFGHIJKLMNOPQRSTUVWXYZ".charAt(a)}else{e+="012345".charAt(a-26)}}return g+e}}},getParam:function(c,a){if(!a){a=window.location.href}else{if(a.indexOf("?")==-1){a="?"+a}}a=Url.decodeComponent(a);var b="[\\?&]+"+c+"=([^&#]*)";var e=new RegExp(b,"i");var d=e.exec(a);if(d==null){return""}else{return d[1].replace(/^[ \t]+|[ \t]+$/,"")}},cleanUrlData:function(a){if(!a){return""}a=a.replace(/\+/g," ");a=a.replace(/[',"]/g,"");a=a.replace(/\t/g,"");a=a.replace(/\n/g,"");a=a.toLowerCase();return a},countChars:function(d,b){var c=0;for(var a=0;a<d.length;a++){if(d.charAt(a)==b){c++}}return c},deDupe:function(c){if(!c||typeof(c)=="string"){return""}var a="",b=0;c.sort();while(b<c.length){if(c[b]==a){c.splice(b,1)}else{a=c[b];b++}}return c},getMeta:function(a){var b="";if(typeof(jQuery)!="undefined"){jQuery("meta").each(function(){var c="";if(jQuery(this).attr("name")==a){c="name"}else{if(jQuery(this).attr("property")==a){c="property"}}if(c){b=jQuery(this).attr("content");return false}})}return b},isIOS:function(){return this.isIPhone()||this.isIPad()},isIPhone:function(){return(this.ua.match(/iPhone/i)!=null)||(this.ua.match(/iPod/i)!=null)},isIPad:function(){return(this.ua.match(/iPad/i)!=null)},getScreenSize:function(){var b=$.browser.msie?document.body.clientWidth:(window.innerWidth>0?window.innerWidth:screen.width),a=(window.innerHeight>0?window.innerHeight:screen.height);return[b,a]},isRobot:function(){return(this.ua.match(/google web preview/i)!=null)||(this.ua.match(/gomezagent/i)!=null)||(this.ua.match(/dejaclick/i)!=null)},getHref:function(b){try{if(b.href&&!(b.href==document.location.href||b.href=="#"||b.href.indexOf(document.location.href+"#")>-1)){return b.href}else{if(!(b.getAttribute("sfdc:href")==""||b.getAttribute("sfdc:href")==null)){return b.getAttribute("sfdc:href")}else{return""}}}catch(a){return""}},getDriver:function(c){if(!c){return""}else{if(Util.getParam("d",c)&&!(Util.getParam("d",c).length==15||Util.getParam("d",c).length==18)){c=c.replace("?d="+Util.getParam("d",c),"?");c=c.replace("&d="+Util.getParam("d",c),"&")}}if(!document.location.search){return c}var b=document.location.search.substring(1).split("&");if(c.indexOf("?")+1==c.length){c=c.substring(0,c.length-1)}for(var a=0;a<b.length;a++){var d=b[a].substring(0,b[a].indexOf("="));if(Util.getParam(d)){var f=d+"="+this.getParam(d,c),e=d+"="+this.getParam(d);if(this.getParam(d,c)){c=c.replace("?"+f,"?"+e);c=c.replace("&"+f,"&"+e)}else{c+=(c.indexOf("?")>-1?"&":"?")+e}}}if(Util.getParam("d",c).length==18){c=c.replace(Util.getParam("d",c),Util.getParam("d",c).substring(0,15))}if(Util.getParam("d",c)&&Util.getParam("d",c).length!=15){c=c.replace("?d="+Util.getParam("d",c),"?");c=c.replace("&d="+Util.getParam("d",c),"&")}return c},ellipsis:function(b,a){if(b.length<a){return b}else{b=b.substring(0,a-3);if(b.indexOf(" ")!=-1){if(" "!=b.charAt(b.length)){b=b.substring(0,b.lastIndexOf(" "))}}return b+"..."}},endsWith:function(b,a){if(!(b||a)||b.indexOf(a)==-1){return false}else{if(b.indexOf(a)+a.length==b.length){return true}}return false},equalHeights:function(a){var b=0;if(typeof a!=="undefined"){a.each(function(){var c=$(this).height();if(c>b){b=c}});a.height(b)}},getRelTime:function(g,b){var k={lessthanmin:"Less than a minute ago",aboutamin:"About a minute ago",minsago:"minutes ago",abouthour:"About an hour ago",about:"About",hoursago:"hours ago",dayago:"1 day ago",daysago:"days ago"};var l=$.extend(k,b||{});var n=g.split(" "),a=[];var m,f,e,p,d,h;$.each(n,function(q,r){if(q==0){m=r}else{if(r.match(/^(19|20)\d\d/)){p=r}else{if(r.match(/^(\+|\-)\d\d\d\d/)){h=r}else{if(r.match(/(\d|[01]\d|2[0-3]):[0-5]\d:[0-5]\d/)){d=r}else{if(r.match(/(\d|0\d|[10-31])/)){f=r}else{e=r}}}}}});formatTime=[e,f,p,d];var o=formatTime.join(" ");var j=Date.parse(o);var c=new Date();var i=parseInt((c.getTime()-j)/1000);i=i+(c.getTimezoneOffset()*60);if(i<60){return l.lessthanmin}else{if(i<120){return l.aboutamin}else{if(i<(60*60)){return(parseInt(i/60)).toString()+" "+l.minsago}else{if(i<(120*60)){return l.abouthour}else{if(i<(24*60*60)){return l.about+" "+(parseInt(i/3600)).toString()+" "+l.hoursago}else{if(i<(48*60*60)){return l.dayago}else{return(parseInt(i/86400)).toString()+" "+l.daysago}}}}}}}};var Server={getAccount:function(){if(Util.isRobot()||!this.isProduction()){return this.stagingAccount}else{return this.productionAccount}},isProduction:function(){if(this.productionDomains.length>0){for(var a in this.productionDomains){if(self.location.href.indexOf(this.productionDomains[a])>0){return true}}}if(this.stagingDomains.length>0){for(var a in this.stagingDomains){if(self.location.href.indexOf(this.stagingDomains[a])>0){return false}}}return false},isStage:function(){return !this.isProduction()},getExternalDomains:function(){return this.externalDomains||[]},getInternalDomains:function(){return this.internalDomains||[]},getCookieDomain:function(){}};Server.productionAccount="salesforcedbcom";Server.stagingAccount="salesforcedbcomdev";Server.productionDomains=["database.com","wiki.database.com","blog.database.com"];Server.stagingDomains=["databasecom.heroku.com","beta.database.com"];Server.internalDomains=["database.com","databasecom.heroku.com"];Server.externalDomains=["www.salesforce.com","www.force.com"];Server.getCookieDomain=function(){return document.location.hostname.indexOf("heroku.com")>-1?".heroku.com":".database.com"};function VisitorProfile(){this.version="w172.1";var b=new Date();this.timestamp=b.getTime();this.profileData=Util.getCookie("appxud")||{};this.activityData=Util.getCookie("webact")||{};if(this.isNewSession()){this.activityData.l_vdays=this.isNewVisitor()?-1:Math.round((this.timestamp-this.lastVisit())/(1000*60*60*24));this.activityData.l_visit=this.getSession();this.activityData.session=this.timestamp;this.activityData.l_search="";this.activityData.l_dtype="";this.activityData.l_page="";if(this.lastVisit()>=this.firstVisit()){this.activityData.counter++;this.activityData.pv=0}}this.idle=this.sessionTimer();this.activityData.session=this.timestamp;if(this.isNewVisitor()){this.activityData.counter=0;if(this.firstVisit()==0){this.activityData.f_visit=this.timestamp;this.activityData.version=this.version}}if(typeof(this.customSetup)=="function"){this.customSetup()}this.skipSave=false;var a=Util.getParam("forceProfile");if((a=="customer"&&!this.isCustomer())||(a=="prospect"&&this.isCustomer())){this.activityData.customer=(a=="customer"?this.timestamp:"");this.skipSave=true}this.saveActivityData()}VisitorProfile.prototype.getBase64Cookie=function(b){var a=Util.getCookie(b);return(a==null||!a)?"":Base64.decode(Url.decodeComponent(a))};VisitorProfile.prototype.getWWWCookie=function(c){try{var a=wwwCookies[c];return Util.isValidJson(a)?Util.parseJSON(a):""}catch(b){return""}};VisitorProfile.prototype.saveActivityData=function(){if(this.skipSave!=true){Util.setJSONCookie(this.activityData,"webact",60*60*24*365)}return true};VisitorProfile.prototype.getActivity=function(a){if(this.activityData!=null){return(this.activityData[a]!=null?this.activityData[a]:"")}else{return""}};VisitorProfile.prototype.isCustomer=function(){return(this.getActivity("customer")>0)};VisitorProfile.prototype.isDeveloper=function(){return(this.getActivity("developer")>0)};VisitorProfile.prototype.isTrialUser=function(){return(this.getActivity("trial")>0)};VisitorProfile.prototype.hasCurrentTrial=function(){var a=1000*60*60*24;if(((this.timestamp-this.getActivity("trial"))/a)<=30){return true}else{if(((this.timestamp-this.getActivity("signup"))/a)<=30){return true}else{return false}}};VisitorProfile.prototype.getVisitNumber=function(){return(this.getActivity("counter")>0?this.getActivity("counter"):0)+1};VisitorProfile.prototype.isNewVisitor=function(){return(this.lastVisit()==0)};VisitorProfile.prototype.lastVisit=function(){return(this.getActivity("l_visit")>0?this.getActivity("l_visit"):0)};VisitorProfile.prototype.getDaysSinceLastVisit=function(){if(this.getActivity("l_vdays")==-1){return"First Visit"}else{if(this.getActivity("l_vdays")>-1&&this.getActivity("l_vdays")<=1){return"Less than 1 day"}else{if(this.getActivity("l_vdays")>1&&this.getActivity("l_vdays")<=7){return"Less than 7 days"}else{if(this.getActivity("l_vdays")>7&&this.getActivity("l_vdays")<=30){return"More than 7 days"}else{if(this.getActivity("l_vdays")>30){return"More than 30 days"}else{return"Cookies Not Supported"}}}}}};VisitorProfile.prototype.firstVisit=function(){return(this.getActivity("f_visit")>0?this.getActivity("f_visit"):0)};VisitorProfile.prototype.getSession=function(){return(this.getActivity("session")>0?this.getActivity("session"):0)};VisitorProfile.prototype.isNewSession=function(){var a=30*60;if(this.sessionTimer()>a||this.newSession){this.newSession=true}else{this.newSession=false}return this.newSession};VisitorProfile.prototype.sessionTimer=function(){return(this.timestamp-this.getSession())/1000};VisitorProfile.prototype.getVersion=function(){return this.getActivity("version")};VisitorProfile.prototype.getType=function(){return"anonymous"};var vp=new VisitorProfile();var Page={name:null,server:null,type:null,driver:null,previous:null,locale:"us",getName:function(){if(this.name==null){this.setName()}return this.name},setPrevious:function(){this.previous=vp.getActivity("l_page");vp.activityData.l_page=this.name;if(vp.activityData.pv==null){vp.activityData.pv=0}vp.activityData.pv++;vp.saveActivityData();return this.previous},getPrevious:function(){if(this.previous==null){this.setPrevious()}return this.previous==null?"":this.previous},getNameNoLocale:function(){return this.getName().replace(":"+this.getLocale()+":",":")},getPathNode:function(b){var a=!this.name?(document.location.pathname.substring(1).split("/")):this.getName().split(":");var c=(b<=a.length?a[b]:"");if(null!=c&&""!=c){return c.toString()}else{return""}},getSegment:function(){if(vp.getType()=="employee"||vp.getType()=="customer"){return vp.getType()+":"+this.getLocale()}else{return"non-customer:"+this.getLocale()}},getDriver:function(){if(this.driver){vp.activityData.l_dtype=this.driver.type;vp.saveActivityData();return this.driver}else{if(this.hasInternalReferrer()){if(Util.getParam("d")){return{id:(Util.getParam("d").length==15?Util.convert15To18(Util.getParam("d")):Util.getParam("d")),type:"internal"}}else{return false}}else{if(this.getReferrer()||Util.getParam("d")){for(var e=0;e<this.driverLookup.types.length;e++){var a=this.driverLookup.types[e],b=true;if(a.qp){var c=a.qp.split(",");for(var d=0;d<c.length;d++){if(!Util.getParam(c[d])){b=false;break}}if(b&&Util.getParam("internal")!="true"){var h=c[0]=="d"?Util.convert15To18(Util.getParam(c[0])):Util.getParam(c[0]);var k={id:h+"|"+a.name,type:a.name};if(a.cb){this.driver=this.driverLookup[a.cb](k);return this.driver}else{this.driver=k;return this.driver}}}else{if(a.pm){for(var d=0;d<a.pm.length;d++){var g=a.pm[d].ms.split(",");for(var f=0;f<g.length;f++){if(this.getReferrer().indexOf(g[f])>-1){this.driver={id:a.name+"|"+a.pm[d].name,type:a.name};return this.driver}}}}else{if(a.cb){this.driver=this.driverLookup[a.cb](a);if(this.driver){return this.driver}}}}}}else{this.driver={id:this.driverLookup.types[this.driverLookup.types.length-1].name,type:this.driverLookup.types[this.driverLookup.types.length-1].name};return this.driver}}}},hasInternalReferrer:function(){if(this.hasExternalReferrer()){return false}var c=this.getReferrer()?this.getReferrer():"",b=Server.getInternalDomains();c=c.indexOf("?")==-1?c:c.substring(0,c.indexOf("?"));for(var a=0;a<b.length;a++){if(c.indexOf(b[a])>-1){return true}}if(Util.getParam("internal")=="true"||(this.getPrevious()&&!(Util.getParam("r")||c))){return true}return false},hasExternalReferrer:function(){var c=this.getReferrer()?this.getReferrer():"",b=Server.getExternalDomains();if(!c){return true}c=c.indexOf("?")==-1?c:c.substring(0,c.indexOf("?"));for(var a=0;a<b.length;a++){if(c.indexOf(b[a])>-1){return true}}return false},getReferrer:function(){return document.referrer},driverLookup:{types:[{name:"SEM",qp:"d,dcmp",cb:"getSearchData"},{name:"Email",qp:"d,RRID"},{name:"BAN",qp:"d,ban",cb:"getDisplay"},{name:"Social Media",qp:"d,",cb:"getSocial"},{name:"Other",qp:"d",cb:"fixInternal"},{name:"SEO",cb:"getSearchData"},{name:"Social Media",pm:[{name:"youtube",ms:"youtube.com"},{name:"twitter",ms:"twitter.com,.t.co,/t.co/"},{name:"linkedin",ms:"linkedin.com"},{name:"facebook",ms:"facebook.com"},{name:"flickr",ms:"flickr.com"},{name:"slideshare",ms:"slideshare.com"},{name:"googleplus",ms:"plus.google.com"}]},{name:"SFDC Network",pm:[{name:"[AppExchange]",ms:"appexchange.salesforce.com,appexchangejp.salesforce.com,sites.secure.force.com/appexchange"},{name:"[Community Site]",ms:"success.salesforce.com,sites.secure.force.com"},{name:"[DeveloperForce]",ms:"developer.force.com,developerforce.com"},{name:"[Help&Training]",ms:"help.salesforce.com"},{name:"[Foundation]",ms:"foundation.force.com"},{name:"[VMForce]",ms:"vmforce.com"},{name:"[YourServiceCloud.com]",ms:"yourservicecloud.com,yourservicecloud.force.com"},{name:"[JoinTheConversations.com]",ms:"jointheconversations.com"},{name:"[Chatter.com]",ms:"chatter.com"},{name:"[Database.com]",ms:"database.force.com,database.com"},{name:"[Data.com]",ms:"data.com"},{name:"[Force.com]",ms:"www.force.com"},{name:"[Force.com Sites]",ms:".force.com"},{name:"[www.salesforce.com]",ms:"www.salesforce.com"}]},{name:"External Websites",cb:"getReferredDriver"},{name:"Typed/Bookmarked"}],searchEngines:[{se:"All The Web",ms:"alltheweb.com",kw:"q,query",dc:"US"},{se:"AllSearchEngines",ms:"allsearchengines.co.uk",kw:"query",dc:"United Kingdom"},{se:"AltaVista",ms:"altavista.com",kw:"q,r",dc:"US",cl:[{cn:"Canada",pre:"ca."},{cn:"Denmark",pre:"dk."},{cn:"France",pre:"fr."},{cn:"Germany",pre:"de."},{cn:"Italy",pre:"it."},{cn:"Netherlands",pre:"nl."},{cn:"Norway",pre:"no."},{cn:"Spain",pre:"es."},{cn:"Sweden",pre:"se."},{cn:"Switzerland",pre:"ch."},{cn:"United Kingdom",pre:"uk."}]},{se:"AOL",ms:".aol.",kw:"q,query",dc:"US",cl:[{cn:"Canada",post:"ca"},{cn:"France",post:"fr"},{cn:"Germany",post:"de"},{cn:"United Kingdom",post:"co.uk"}]},{se:"Ask",ms:"ask.com",kw:"q",dc:"US",cl:[{cn:"Japan",pre:"jp"},{cn:"United Kingdom",pre:"uk"}]},{se:"Baidu",ms:"baidu.com",kw:"wd,s",dc:"China"},{se:"BeGuide.com",ms:"beguide.com",kw:"q,search",dc:"US"},{se:"Biglobe",ms:"biglobe.ne.jp",kw:"q",dc:"Japan"},{se:"Microsoft Bing",ms:"bing.com",kw:"q",dc:"US"},{se:"Blue Window",ms:"search.bluewin.ch",kw:"q,qry",dc:"Switzerland"},{se:"Business.com",ms:"business.com",kw:"query",dc:"US"},{se:"BuyersIndex",ms:"buyersindex.com",kw:"query",dc:"US"},{se:"Chubba",ms:"whatuseek.com",kw:"arg",dc:"US"},{se:"CNET",ms:"cnet.com",kw:"query,q",dc:"US"},{se:"Debriefing.com",ms:"debriefing.com",kw:"tsearch",dc:"US"},{se:"Dmoz",ms:"dmoz.org",kw:"search",dc:"US"},{se:"Excite",ms:"excite.com",kw:"q,search",dc:"US",cl:[{cn:"Netherlands",post:".nl"},{cn:"France",post:".fr"},{cn:"Germany",post:".de"},{cn:"Japan",post:".co.jp"},{cn:"Switzerland",post:".ch"}]},{se:"Fireball",ms:"fireball.de",kw:"q,query",dc:"Germany"},{se:"FreshEye",ms:"fresheye.com",kw:"kw,ord",dc:"Japan"},{se:"Godado",ms:"godado.it",kw:"key",dc:"Italy"},{se:"Goo (Jp.)",ms:"goo.ne.jp",kw:"MT",dc:"Japan"},{se:"Google",ms:".google.,googlesyndication.com",kw:"q",types:[{tn:"Images",pre:"images"},{tn:"Video",pre:"video"}],dc:"US",cl:[{cn:"Afghanistan",post:"com.af"},{cn:"American Samoa",post:"as"},{cn:"Anguilla",post:"com.ai"},{cn:"Antigua and Barbuda",post:"com.ag"},{cn:"Argentina",post:"com.ar"},{cn:"Armenia",post:"am"},{cn:"Australia",post:"com.au"},{cn:"Austria",post:"at"},{cn:"Azerbaijan",post:"az"},{cn:"Bahrain",post:"com.bh"},{cn:"Bangladesh",post:"com.bd"},{cn:"Belarus",post:"com.by"},{cn:"Belgium",post:"be"},{cn:"Belize",post:"com.bz"},{cn:"Bolivia",post:"com.bo"},{cn:"Bosnia-Hercegovina",post:"ba"},{cn:"Botswana",post:"co.bw"},{cn:"Brasil",post:"com.br"},{cn:"British Virgin Islands",post:"vg"},{cn:"Brunei",post:"com.bn"},{cn:"Bulgaria",post:"bg"},{cn:"Burundi",post:"bi"},{cn:"Cambodia",post:"com.kh"},{cn:"Canada",post:"ca"},{cn:"Chile",post:"cl"},{cn:"China",post:"cn"},{cn:"Colombia",post:"com.co"},{cn:"Cook Islands",post:"co.ck"},{cn:"Costa Rica",post:"co.cr"},{cn:"Cote D'Ivoire",post:"ci"},{cn:"Croatia",post:"hr"},{cn:"Cuba",post:"com.cu"},{cn:"Czech Republic",post:"cz"},{cn:"Denmark",post:"dk"},{cn:"Djibouti",post:"dj"},{cn:"Dominica",post:"dm"},{cn:"Dominican Republic",post:"com.do"},{cn:"Ecuador",post:"com.ec"},{cn:"Egypt",post:"com.eg"},{cn:"El Salvador",post:"com.sv"},{cn:"Estonia",post:"ee"},{cn:"Ethiopia",post:"com.et"},{cn:"Fiji",post:"com.fj"},{cn:"Finland",post:"fi"},{cn:"France",post:"fr"},{cn:"Germany",post:"de"},{cn:"Greece",post:"gr"},{cn:"Greenland",post:"gl"},{cn:"Guadeloupe",post:"gp"},{cn:"Guatemala",post:"com.gt"},{cn:"Guernsey",post:"gg"},{cn:"Guyana",post:"gy"},{cn:"Haiti",post:"ht"},{cn:"Honduras",post:"hn"},{cn:"Hong Kong",post:"com.hk"},{cn:"Hungary",post:"hu"},{cn:"India",post:"co.in"},{cn:"Indonesia",post:"co.id"},{cn:"Ireland",post:"ie"},{cn:"Island",post:"is"},{cn:"Isle of Gibraltar",post:"com.gi"},{cn:"Isle of Man",post:"im"},{cn:"Israel",post:"co.il"},{cn:"Italy",post:"it"},{cn:"Jamaica",post:"com.jm"},{cn:"Japan",post:"co.jp"},{cn:"Jersey",post:"je"},{cn:"Jordan",post:"jo"},{cn:"Kazakhstan",post:"kz"},{cn:"Kenya",post:"co.ke"},{cn:"Kiribati",post:"ki"},{cn:"Korea",post:"co.kr"},{cn:"Kyrgyzstan",post:"kg"},{cn:"Laos",post:"la"},{cn:"Latvia",post:"lv"},{cn:"Lesotho",post:"co.ls"},{cn:"Libya",post:"com.ly"},{cn:"Liechtenstein",post:"li"},{cn:"Lithuania",post:"lt"},{cn:"Luxembourg",post:"lu"},{cn:"Malawi",post:"mw"},{cn:"Malaysia",post:"com.my"},{cn:"Maldives",post:"mv"},{cn:"Malta",post:"com.mt"},{cn:"Mauritius",post:"mu"},{cn:"Mexico",post:"com.mx"},{cn:"Micronesia",post:"fm"},{cn:"Moldova",post:"md"},{cn:"Mongolia",post:"mn"},{cn:"Montserrat",post:"ms"},{cn:"Morocco",post:"co.ma"},{cn:"Namibia",post:"com.na"},{cn:"Nauru",post:"nr"},{cn:"Nepal",post:"com.np"},{cn:"Netherlands",post:"nl"},{cn:"New Zealand",post:"co.nz"},{cn:"Nicaragua",post:"com.ni"},{cn:"Nigeria",post:"com.ng"},{cn:"Niue",post:"nu"},{cn:"Norfolk Island",post:"com.nf"},{cn:"Norway",post:"no"},{cn:"Oman",post:"com.om"},{cn:"Pakistan",post:"com.pk"},{cn:"Panama",post:"com.pa"},{cn:"Paraguay",post:"com.py"},{cn:"Peru",post:"com.pe"},{cn:"Philippines",post:"com.ph"},{cn:"Pitcairn Islands",post:"pn"},{cn:"Poland",post:"pl"},{cn:"Portugal",post:"pt"},{cn:"Puerto Rico",post:"com.pr"},{cn:"Qatar",post:"com.qa"},{cn:"Rep. Dem. du Congo",post:"cd"},{cn:"Rep. du Congo",post:"cg"},{cn:"Repulic of Georgia",post:"ge"},{cn:"Romania",post:"ro"},{cn:"Russia",post:"ru"},{cn:"Rwanda",post:"rw"},{cn:"Saint Helena",post:"sh"},{cn:"Saint Vincent and the Grenadine",post:"com.vc"},{cn:"Samoa",post:"ws"},{cn:"San Marino",post:"sm"},{cn:"Sao Tome and Principe",post:"st"},{cn:"Saudi Arabia",post:"com.sa"},{cn:"Senegal",post:"sn"},{cn:"Seychelles",post:"sc"},{cn:"Singapore",post:"com.sg"},{cn:"Slovakia",post:"sk"},{cn:"Slovenia",post:"si"},{cn:"Solomon Islands",post:"com.sb"},{cn:"South Africa",post:"co.za"},{cn:"Spain",post:"es"},{cn:"Sri Lanka",post:"lk"},{cn:"Sweden",post:"se"},{cn:"Switzerland",post:"ch"},{cn:"Taiwan",post:"com.tw"},{cn:"Tajikistan",post:"com.tj"},{cn:"Thailand",post:"co.th"},{cn:"The Bahamas",post:"bs"},{cn:"The Gambia",post:"gm"},{cn:"Timor-Leste",post:"tp"},{cn:"Tokelau",post:"tk"},{cn:"Tonga",post:"to"},{cn:"Trinidad and Tobago",post:"tt"},{cn:"Turkey",post:"com.tr"},{cn:"Turkmenistan",post:"tm"},{cn:"Uganda",post:"co.ug"},{cn:"Ukraine",post:"com.ua"},{cn:"United Arab Emirates",post:"ae"},{cn:"United Kingdom",post:"co.uk"},{cn:"Uruguay",post:"com.uy"},{cn:"Uzbekiston",post:"co.uz"},{cn:"Vanuatu",post:"vu"},{cn:"Venezuela",post:"co.ve"},{cn:"Viet Nam",post:"com.vn"},{cn:"Virgin Islands",post:"co.vi"},{cn:"Yugoslavia",post:"co.yu"},{cn:"Zambia",post:"co.zm"},{cn:"Zimbabwe",post:"co.zw"}]},{se:"Hotbot",ms:"hotbot.com",kw:"query",dc:"US"},{se:"ilse.nl",ms:"ilse.nl",kw:"search_for",dc:"Netherlands"},{se:"Indeed",ms:"www.indeed.",kw:"q",dc:"US",cl:[{cn:"Canada",post:"ca"},{cn:"India",post:"co.in"}]},{se:"InfoSpace",ms:"infospace.com",kw:"",dc:"US"},{se:"InfoTiger",ms:"infotiger.com",kw:"qs",dc:"US"},{se:"Livedoor",ms:"livedoor.com",kw:"q",dc:"Japan"},{se:"Lycos",ms:".lycos",kw:"query",dc:"US",cl:[{cn:"France",post:".fr"},{cn:"Germany",post:".de"},{cn:"Italy",post:".it"},{cn:"Netherlands",post:".nl"},{cn:"Spain",post:".es"},{cn:"United Kingdom",post:".co.uk"}]},{se:"Metacrawler",ms:"metacrawler.com",kw:"",dc:"US"},{se:"Monster Crawler",ms:"monstercrawler.com",kw:"",dc:"US"},{se:"myGO",ms:"mygo.com",kw:"",dc:"Taiwan"},{se:"Nate.com",ms:"nate.com",kw:"q",dc:"Korea"},{se:"Naver",ms:"naver.com",kw:"query",dc:"Korea"},{se:"Netscape Search",ms:"",kw:"q",dc:"US"},{se:"NetSearch",ms:"netscape.com",kw:"qry_str",dc:"US"},{se:"Nifty",ms:"nifty.com,search.nifty.com",kw:"q",dc:"Japan"},{se:"Oh! New? Mobile",ms:"ohnew.co.jp",kw:"k",dc:"Japan"},{se:"OptusZoo",ms:"optuszoo.com.au",kw:"q",dc:"Australia"},{se:"Reference.com",ms:"reference.com",kw:"q",dc:"US"},{se:"Search.ch",ms:"search.ch",kw:"q",dc:"Switzerland"},{se:"Searchalot",ms:"searchalot.com",kw:"q,query",dc:"US"},{se:"Tiscali",ms:"tiscali.it",kw:"key",dc:"Italy"},{se:"track.nl",ms:"track.nl",kw:"qr",dc:"Netherlands"},{se:"Virgilio",ms:"ricerca.virgilio.it,virgilio.it",kw:"qs",dc:"Italy"},{se:"Web Wombat",ms:"webwombat.com.au",kw:"ix,I",dc:"Australia"},{se:"Web.de",ms:"web.de",kw:"su",dc:"Germany"},{se:"Webalta",ms:"webalta.ru",kw:"q",dc:"Russia"},{se:"WebCrawler",ms:"webcrawler.com",kw:"",dc:"US"},{se:"Yahoo!",ms:"search.yahoo.",kw:"p",dc:"US",cl:[{cn:"Argentina",pre:"ar."},{cn:"Asia",pre:"asia."},{cn:"Australia",pre:"au."},{cn:"Austria",pre:"at."},{cn:"Brazil",pre:"br."},{cn:"Canada",pre:"ca."},{cn:"Canada (French)",pre:"qc."},{cn:"Catalan",pre:"ct."},{cn:"China",pre:"cn."},{cn:"Denmark",pre:"dk."},{cn:"Finland",pre:"fi."},{cn:"France",pre:"fr."},{cn:"Germany",pre:"de."},{cn:"Hong Kong",pre:"hk."},{cn:"India",pre:"in."},{cn:"Indonesia",pre:"id."},{cn:"Italy",pre:"it."},{cn:"Japan",post:"co.jp"},{cn:"Korea",pre:"kr."},{cn:"Malaysia",pre:"malaysia."},{cn:"Mexico",pre:"mx."},{cn:"Netherlands",pre:"nl."},{cn:"New Zealand",pre:"nz."},{cn:"Norway",pre:"no."},{cn:"Philippines",pre:"ph."},{cn:"Russia",pre:"ru."},{cn:"Singapore",pre:"sg."},{cn:"Spain",pre:"es."},{cn:"Sweden",pre:"se."},{cn:"Switzerland",pre:"ch."},{cn:"Taiwan",pre:"tw."},{cn:"Thailand",pre:"th."},{cn:"UK and Ireland",pre:"uk."},{cn:"Viet Nam",pre:"vn."}]},{se:"Yandex.ru",ms:"yandex.ru",kw:"text",dc:"Russia"},{se:"zoeken.nl",ms:"zoeken.nl",kw:"q",dc:"Netherlands"}],getReferringDomain:function(){var a=Page.getReferrer(),b="://";if(!a||a.indexOf("http")!=0){return""}a=a.indexOf(b)>-1?a.substring(a.indexOf(b)+b.length):a;a=a.indexOf("/")>-1?a.substring(0,a.indexOf("/")):a;a=a.indexOf("?")>-1?a.substring(0,a.indexOf("?")):a;a=a.indexOf("#")>-1?a.substring(0,a.indexOf("#")):a;return a},getReferredDriver:function(a){var b=this.getReferringDomain();if(!(a&&b)){return{}}return{id:a.name+"|"+b,type:a.name}},fixInternal:function(c){if(!c){return{}}var f=this.types[6];for(var d=0;d<f.pm.length;d++){var a=f.pm[d].ms.split(",");for(var b=0;b<a.length;b++){if(Page.getReferrer().indexOf(a[b])>-1){var e={id:f.name+"|"+f.pm[d].name,type:f.type,internal:Util.getParam("d")};return e}}}return c},getDisplay:function(a){if(!(a&&a.id&&a.type)){return{}}var c=Url.decodeComponent(Util.getParam("ban")).replace(/_/g,"|"),b="ban|";if(c.indexOf(b)==0||c.indexOf(b.toUpperCase())==0){c=c.substring(b.length-1)}c=c.toLowerCase();if(c.charAt(0)!="|"){c="|"+c}return{id:a.id+c,type:a.type}},getSocial:function(b){if(!(b&&b.id&&b.type)){return{}}var a=Url.decodeComponent(Util.getParam("soc")).toLowerCase();return{id:b.id+(a?"|"+a:""),type:b.type}},getSearchData:function(n){var c=Page.getReferrer(),o="",b="",h="";for(var g=0;g<this.searchEngines.length;g++){var a=this.searchEngines[g],m=this.searchEngines[g].ms.split(",");for(var f=0;f<m.length;f++){if(m[f]&&(c.indexOf(m[f])>-1)){o=a.se;if(a.types){for(var p=0;p<a.types.length;p++){if(a.types[p].pre&&c.indexOf(a.types[p].pre+m[f])>-1){o=o+" "+a.types[p].tn;break}if(a.types[p].post&&c.indexOf(m[f]+a.types[p].post)>-1){o=o+" "+a.types[p].tn;break}}}var q=a.kw.split(",");for(var e=0;e<q.length;e++){h=Url.decodeComponent(Util.getParam(q[e],c));if(h){break}}if(!h){if(c.indexOf("/url")>-1&&c.indexOf("q=&")>-1){h="no keyword (secure)"}else{break}}if(a.cl){for(var d=0;d<a.cl.length;d++){if(a.cl[d].pre&&c.indexOf(a.cl[d].pre+m[f])>-1){b=a.cl[d].cn}if(a.cl[d].post&&c.indexOf(m[f]+a.cl[d].post)>-1){b=a.cl[d].cn}}}if(!b){b=a.dc||"US"}}}}if(n.id||(o&&h)){h=h?Util.cleanUrlData(h):"no keyword";o=o?(b.toUpperCase()!="US"?o+" - "+b:o):"no search engine";if(n.type=="SEM"){n.id+=((o?"|"+o:"")+(h?"|"+h:""))}return{id:(n.id?n.id:(n.name+"|"+o+"|"+h)),type:(n.type?n.type:n.name),keyword:h,engine:o}}else{return null}}},TrackingPixel:function(b,a){this.protocol=document.location.protocol;this.date=new Date();this.current=[];this.render=a;if(typeof(b)!="object"){return false}this.locales=b.locales?b.locales:[];this.show=b.show?b.show:false;this.exclusive=b.exclusive?b.exclusive:false;this.details=b.details?b.details:{empty:true};this.mobile=b.mobile?b.mobile:false;this.insertImage=function(c){if(!c){return false}(function(d){d("#conversion-tracking").append('<img width="1" height="1" border="0" src="'+c+'"/>')})(jQuery)};this.insertIframe=function(c){if(!c){return false}(function(d){d("#conversion-tracking").append('<iframe width="1" height="1" frameborder="0" scrolling="no" style="visibility:hidden;display:none;" src="'+c+'"></iframe>')})(jQuery)};this.insertScript=function(d){try{var c=document.createElement("script"),f=document.getElementById("conversion-tracking");c.setAttribute("type","text/javascript");c.setAttribute("src",d);f.appendChild(c);return true}catch(e){return false}};this.getDoubleClick=function(e,d){if(!e){return false}var c=this.protocol+"//ad.doubleclick.net/activity;";if(e.cat&&!e.src){e.src="2574016";e.type="sales225"}else{if(e.boom&&!e.src){e.src="1862678";e.dcnet="4856"}}c+=this.toQueryString(e,";")+";ord="+this.date.getTime()+"?";this.insertImage(c)};this.getGoogle=function(){var h=[];if(this.getPixelFromMeta()){h[h.length]=this.getPixelFromMeta()}for(var e=0;e<this.current.length;e++){if(this.details[this.current[e]]&&this.details[this.current[e]].id){h[h.length]=this.details[this.current[e]]}}var d=0;for(e=0;e<h.length;e++){d++;var c=this.protocol+"//www.googleadservices.com/pagead/conversion/"+h[e].id+"/?",f="";var g={random:this.date.getTime(),cv:"6",fst:this.date.getTime(),num:d,fmt:h[e].format||"1",value:h[e].value||"1",label:h[e].label||"lead",bg:"ffffff",hl:h[e].lang||"",gl:h[e].country||"",guid:"ON",u_tz:-this.date.getTimezoneOffset(),url:document.location.href};c+=this.toQueryString(g);this.insertImage(c)}};this.getBizo=function(){var d=this.details[this.current[0]],c=this.protocol+"//";if(this.protocol=="https:"){d.id=d.sid;c+="ad.yieldmanager.com/pixel"}else{c+="ad.bizo.com/pixel"}var e={id:d.id,t:"2"};c+="?"+this.toQueryString(e);this.insertImage(c)};this.getPixelFromMeta=function(){var d=Util.getMeta("pageMetrics");if(!(d&&Util.isValidJson(d))){return false}var c=Util.parseJSON(d);if(!(c.pixel&&c.pixel.id)){return false}return c.pixel};this.toQueryString=function(f,g){g=g?g:"&";var c="",d=0;for(var e in f){if(f.hasOwnProperty(e)&&typeof(f[e])!="function"){if(f[e]!=""&&f[e]!=null){if(d>0){c+=g}c+=e+"="+Url.encodeComponent(f[e]);d++}}}return c};this.isValid=function(d){this.current=[];if(!this.show||(typeof(this.show)=="function"&&!this.show())){return false}else{if(!this.mobile&&com.salesforce.www.App.cfg("isMobileDevice")){return false}else{if((this.locales&&d.inArray(Page.getLocale(),this.locales)>-1||!this.locales||this.locales.length==0)&&this.details.empty){return true}else{if(!this.details.empty&&(this.locales.length==0||d.inArray(Page.getLocale(),this.locales)>-1)){for(var c=0;c<this.details.length;c++){if((typeof(this.details[c].locales)=="undefined"||d.inArray(Page.getLocale(),this.details[c].locales)>-1)&&(typeof(this.details[c].show)=="undefined"||((typeof(this.details[c].show)!="function"&&this.details[c].show)||(typeof(this.details[c].show)=="function"&&this.details[c].show())))){this.current[this.current.length]=c;if(this.exclusive){break}}}return this.current.length>0?true:false}}}}}},PixelManager:{pixels:[],protocol:document.location.protocol,newPixel:function(b,a){if(!(b&&a)){return false}this.pixels[this.pixels.length]=new Page.TrackingPixel(b,a)},configure:function(b){if(b("#conversion-tracking").html()==null){b("body").append('<div id="conversion-tracking"></div>')}for(var a=0;a<this.pixels.length;a++){if(this.pixels[a].isValid(b)){this.pixels[a].render(b)}}}}};Page.setName=function(b){var c=false;if(b==this.errorName){b="";c=true}b=b?b:document.location.pathname;if(b.indexOf("/")>-1&&b.indexOf(":")<0){b=b.replace(/\//g,":");b=b.replace(/\:index\.jsp/,"");b=b.replace(/\:index\.php/,"");b=b.replace(/\.jsp|\.htm(l?)/,"");b=b.replace(":page:",":");b=b.replace(":blog:",":");b=b.replace(":en:",":");b=Util.endsWith(b,":en")?b.substring(0,b.indexOf(":en")):b;b=Util.endsWith(b,":Home")?b.substring(0,b.indexOf(":Home")):b;b=b.indexOf(":")==0?b:":"+b;b=b.toLowerCase();b=this.getServer()+(b.match(/^\:\w{2}\:/)?"":":us")+b;b=b.charAt(b.length-1)==":"?b.substring(0,b.length-1):b}this.name=b;if(!this.isValidServer(this.getPathNode(0))){this.setServer();this.name=this.getServer()+(this.name.charAt(0)==":"?"":":")}if(!this.isValidLocale(this.getPathNode(1))){var d=this.name.split(":");d.splice(1,0,this.locale);this.name=d.join(":")}if(document.location.hostname=="devcenter.database.com"||document.location.hostname=="wiki.database.com"||document.location.hostname=="wiki-beta.database.com"){this.name=this.name.replace(":"+this.getLocale(),":"+this.getLocale()+":devcenter")}else{if(document.location.hostname=="blog.database.com"||document.location.hostname=="blog-beta.database.com"){this.name=this.name.replace(":"+this.getLocale(),":"+this.getLocale()+":blog")}else{if(document.location.hostname=="trust.database.com"&&this.name.indexOf("trust")==-1){this.name=this.name.replace(":"+this.getLocale(),":"+this.getLocale()+":trust")}else{if(document.location.hostname=="www3.database.com"&&this.name.indexOf("form")==-1){this.name=this.name.replace(":"+this.getLocale(),":"+this.getLocale()+":form");this.name+=this.name.indexOf(":signup")>-1?"":":signup";this.name=this.name.replace("_success",":[conf]")}}}}if(!this.getPathNode(2)){this.name+=(this.name.lastIndexOf(":")==this.name.length-1?"":":")+"homepage"}vp.activityData.l_cloud=this.getCloud();vp.activityData.seg=this.getSegment();this.setPrevious();return this.name};Page.isHome=function(){return this.getName().indexOf("homepage")>-1};Page.isPricing=function(){return this.getChannel().indexOf("pricing")>-1};Page.isBlog=function(){return this.getChannel().indexOf("blog")>-1};Page.isDev=function(){return this.getChannel().indexOf("devcenter")>-1};Page.isTrust=function(){return this.getChannel().indexOf("trust")>-1};Page.hasLeadCaptureForm=function(){return this.getChannel().indexOf(":form")>-1&&!Page.isConfirmation()};Page.isConfirmation=function(){return this.getChannel().indexOf(":form")>-1&&this.getName().indexOf("[conf]")>-1};Page.is404=function(){return false};Page.isTrackedOnLoad=function(){return true};Page.isValidLocale=function(b){var c=["au","de","eu","fr","in","jp","mx","uk","us"];for(var d=0;d<c.length;d++){if(b==c[d]){return true}}return false};Page.isValidServer=function(d){var c=["DBCOM"];for(var b=0;b<c.length;b++){if(d==c[b]){return true}}return false};Page.getType=function(){var b=[{name:"Home Page",cb:"isHome"},{name:"Form Page",cb:"hasLeadCaptureForm"},{name:"Confirmation Page",cb:"isConfirmation"},{name:"Pricing and Editions Page",cb:"isPricing"},{name:"Dev Center Page",cb:"isDev"},{name:"Blog Page",cb:"isBlog"},{name:"Trust Page",cb:"isTrust"},{name:"Other Page"}];for(var d=0;d<b.length;d++){if(d==b.length-1){break}else{if(b[d].cb){if(this[b[d].cb]()){return b[d].name}}else{if(b[d].pm){var e=b[d].pm.split(",");for(var c=0;c<e.length;c++){if(this.getName().indexOf(":"+e[c]+":")>-1||Util.endsWith(this.getName(),":"+e[c])){return b[d].name}}}}}}return b[b.length-1].name};Page.getCloud=function(){return"Custom Cloud"};Page.getLocale=function(){var c=this.getPathNode(1).match(/^(\w{2})$/),b="us";if(c!=null){b=this.isValidLocale(c[0])?c[0]:b}return b.toLowerCase()};Page.getChannel=function(){return this.getLocale()+":"+(this.getPathNode(2)?this.getPathNode(2):"other")};Page.setServer=function(){this.server="DBCOM";return this.server};Page.getServer=function(){if(this.server==null){this.setServer()}return this.server;a};var OmniConfig={loadPlugins:function(){try{for(var b=0;b<OmniConfig.plugins.length;b++){OmniConfig.plugins[b].call()}}catch(a){}},sharedPageLoad:function(){s.setupDynamicObjectIDs();s.pageName=s.pageName?s.pageName:Page.getName();s.charSet="UTF-8";s.channel=s.eVar6=Page.getChannel();s.server=Page.getServer();s.eVar3=Page.getLocale();s.prevPage=Page.getPrevious();s.prop35=s.prevPage?s.prevPage:"[NO PREVIOUS PAGE AVAILABLE]";s.prop39=Page.getNameNoLocale();s.eVar36=Page.getType();s.eVar35=Page.getCloud();s.expDate=new Date();s.expDate.setDate(s.expDate.getDate()-1);s.referrer=Page.getReferrer();s.prop37=s.getPercentPageViewed();if(s.prop37<=0||!s.prop35||s.c_r("s_ppv_x")=="true"){s.prop37="100|0";s.c_w("s_ppv_x","")}if(top!=self){s.browserWidth=s.browserHeight="";s.c_w("s_ppv_x","true")}s.pageURL=window.location.href;s.events=s.events?s.events:"";s.events=s.apl(s.events,"event11",",",2);s.eVar17=s.eVar26="+1";s.prop9=vp.getVersion();s.eVar14=vp.getType();s.prop49=Page.getSegment();try{if(vp.OrgInfo.getStatus()||vp.OrgInfo.getType()){s.eVar58=vp.OrgInfo.getEdition()}s.eVar57=vp.OrgInfo.getID()}catch(a){}s.detectRIA("c16","prop16","","","","");s.tpDate=new Date();s.eVar24=s.getTimeParting("h","-8",s.tpDate.getFullYear());s.eVar25=s.getTimeParting("d","-8",s.tpDate.getFullYear());if(Page.is404()){s.pageType="errorPage";s.prop29="D=g"}s.eVar34=vp.getVisitNumber();if(vp.isNewSession()){if(vp.isNewVisitor()){s.events=s.apl(s.events,"event36",",",2)}else{s.events=s.apl(s.events,"event37",",",2)}}s.eVar4=vp.getDaysSinceLastVisit();s.prop50=Server.getAccount()},sharedOnClick:function(){if(!s.linkTracked){s.downloadUrl=s.linkHandler("","d","",1);if(s.downloadUrl){s.downloadUrl=s.downloadUrl.indexOf("#")>-1?s.downloadUrl.substring(0,s.downloadUrl.indexOf("#")):s.downloadUrl;s.downloadUrl=s.downloadUrl.toLowerCase();s.eVar13=s.repl(s.downloadUrl,"https://","");s.eVar13=s.repl(s.eVar13,"http://","");s.events=s.apl(s.events,"event13",",",2);s.downloadUrl=s.eVar13.substring(s.eVar13.indexOf("/")+1);s.downloadUrl=s.repl(s.downloadUrl,"/",":").toLowerCase();s.pageName=s.server+":"+s.eVar6+":file:"+s.downloadUrl}}s.prop1=s.eVar1="D=g";s.prop2=s.eVar3?"D=v3":"";s.channel=s.eVar6?"D=v6":"";s.prop12=s.eVar12?"D=v12":"";s.prop13=s.eVar13?"D=v13":"";s.prop14=s.eVar14?"D=v14":"";s.prop18=s.eVar24?"D=v24":"";s.prop19=s.eVar25?"D=v25":"";s.prop23=s.eVar34?"D=v34":"";s.prop32=s.eVar35?"D=v35":"";s.prop33=s.eVar36?"D=v36":"";s.eVar2=s.referrer?"D=r":"";s.eVar8=s.pageName?"D=pageName":"";s.eVar23=s.transactionID?"D=xact":"";s.eVar27=s.campaign?"D=v0":"";s.eVar39=s.prop35?"D=c35":"";s.linkTrackVars=s.apl(s.linkTrackVars,"prop7",",",2);s.linkTrackVars=s.apl(s.linkTrackVars,"prop49",",",2);s.linkTrackVars=s.apl(s.linkTrackVars,"eVar34",",",2);s.linkTrackVars=s.apl(s.linkTrackVars,"eVar7",",",2);s.linkTrackVars=s.apl(s.linkTrackVars,"eVar8",",",2);s.linkTrackVars=s.apl(s.linkTrackVars,"eVar35",",",2);s.linkTrackEvents=s.apl(s.linkTrackEvents,"event7",",",2)}};OmniConfig.plugins=[];OmniConfig.customPageLoad=function(){var a=this;s.driver=Page.getDriver();if(s.driver){if(s.driver.type=="internal"||s.driver.internal){s.eVar22=s.getValOnce(s.driver.internal||s.driver.id,"v22");if(s.eVar22){s.eVar22=s.prop35+"|"+s.eVar22}}if(s.driver.type!="internal"){if((s.driver.type=="Typed/Bookmarked"||s.driver.type=="Force.com")&&s.c_r("v0")){s.driver.id=""}s.driver.id=s.getValOnce(s.driver.id,"v0",0);if(s.driver.id){s.campaign=s.driver.id;if(s.driver.type=="SEO"||s.driver.type=="SEM"){s.eVar11=s.driver.keyword;s.eVar37=s.driver.engine;s.events=s.apl(s.events,"event18",",",2);s.prop36=s.getAndPersistValue(s.driver.type+"|"+s.driver.keyword,"c36",0);if(s.driver.type=="SEO"){s.events=s.apl(s.events,"event15",",",2)}else{if(s.driver.type=="SEM"){s.events=s.apl(s.events,"event14",",",2)}}}s.prop22=s.prop40=s.getAndPersistValue(s.driver.type,"c22",0);s.eVar44=s.cvpSimple(s.driver.type,"v44","365","5"," ^ ")}}}if(Page.hasLeadCaptureForm()){s.events=s.apl(s.events,"event16",",",2)}else{if(Page.isConfirmation()){s.events=s.apl(s.events,"event17",",",2)}}s.prop22=s.getAndPersistValue("","c22",0);s.prop22=s.prop22?s.prop22+":"+s.pageName:"";if(s.c_r("c40")||s.prop40){if(!s.prop40||(s.prop40==s.c_r("c40"))){s.prop40="did not bounce"}else{if(s.prop40!=s.c_r("c40")){s.prop40=s.getAndPersistValue(s.prop40,"c40",0)}}}};OmniConfig.customOnClick=function(){var a=this;s.manageVars("clearVars","events,products,eVar22,eVar53");s.pageName=s.pageName||Page.getName();s.events=s.apl(s.events,"event11",",",2)};var s_account=Server.getAccount();var s=s_gi(s_account);s.trackDownloadLinks=true;s.trackExternalLinks=true;s.trackInlineStats=true;s.linkDownloadFileTypes=".exe,.zip,.wav,.mp3,.mov,.mpg,.avi,.wmv,.pdf,.doc,.docx,.xls,.xlsx,.ppt,.pptx,.eps";s.linkInternalFilters="javascript:,.salesforce.com,sfdcstatic.com,.force.com,chatter.com,opinionlab.com,mailto:,"+document.location.hostname;s.linkLeaveQueryString=false;s.linkTrackVars="None";s.linkTrackEvents="None";s.fpCookieDomainPeriods=(Util.countChars(document.location.hostname,".")+1).toString();function s_getObjectID(b){var a=b.href;return a}s.getObjectID=s_getObjectID;s.usePlugins=true;function s_doPlugins(a){OmniConfig.customOnClick();if(!a.pageLoaded){OmniConfig.sharedPageLoad();OmniConfig.customPageLoad()}OmniConfig.sharedOnClick();a.pageLoaded=true}s.doPlugins=s_doPlugins;OmniConfig.loadPlugins();s.trackForm=OmniConfig.trackForm;s.trackCTAs=OmniConfig.trackCTAs;s.trackModules=OmniConfig.trackModules;s.trackChat=OmniConfig.trackChat;s.cvpSimple=function(v,cn,ex,ct,dl){if(!v){return""}ex=ex?ex:365;var exd=new Date(),cv=s.c_r(cn),na=new Array();if(cv.indexOf("[[")>-1){var oa=new Array();oa=eval(cv);for(var i=0;i<oa.length;i++){na[na.length]=oa[i][0]}exd.setDate(exd.getDate()-1)}else{if(cv){na=cv.split("~")}}if(na.length>=ct){na.splice(0,1)}na[na.length]=v;exd.setDate(exd.getDate()+ex);s.c_w(cn,na.join("~"),exd);return na.join(dl)};s.trimUrl=new Function("u","if(!u){return '';}if(u.indexOf('?')>-1){u=u.substring(0,u.indexOf('?'));}if(u.indexOf('#')>-1){u=u.substring(0,u.indexOf('#'));}return u;");s.deDupe=new Function("l","d","d=d?d:',';if(!(l&&d)){return false;}var a=l.split(d),lv='',i=0;a.sort();while(i<a.length){if(a[i]==lv){a.splice(i,1);}else{lv=a[i];i++;}}return a.join(d)");s.getQueryParam=new Function("p","d","u","var s=this,v='',i,t;d=d?d:'';u=u?u:(s.pageURL?s.pageURL:s.wd.location);if(u=='f')u=s.gtfs().location;while(p){i=p.indexOf(',');i=i<0?p.length:i;t=s.p_gpv(p.substring(0,i),u+'');if(t){t=t.indexOf('#')>-1?t.substring(0,t.indexOf('#')):t;}if(t)v+=v?d+t:t;p=p.substring(i==p.length?i:i+1)}return v");s.p_gpv=new Function("k","u","var s=this,v='',i=u.indexOf('?'),q;if(k&&i>-1){q=u.substring(i+1);v=s.pt(q,'&','p_gvf',k)}return v");s.p_gvf=new Function("t","k","if(t){var s=this,i=t.indexOf('='),p=i<0?t:t.substring(0,i),v=i<0?'True':t.substring(i+1);if(p.toLowerCase()==k.toLowerCase())return s.unescp(v)}return ''");s.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");s.getPreviousValue=new Function("v","c","el","var s=this,t=new Date,i,j,r='';t.setTime(t.getTime()+1800000);if(el){if(s.events){i=s.split(el,',');j=s.split(s.events,',');for(x in i){for(y in j){if(i[x]==j[y]){if(s.c_r(c)) r=s.c_r(c);v?s.c_w(c,v,t):s.c_w(c,'no value',t);return r}}}}}else{if(s.c_r(c)) r=s.c_r(c);v?s.c_w(c,v,t):s.c_w(c,'no value',t);return r}");s.getAndPersistValue=new Function("v","c","e","var s=this,a=new Date;e=e?e:0;a.setTime(a.getTime()+e*86400000);if(v)s.c_w(c,v,e?a:0);return s.c_r(c);");s.manageVars=new Function("c","l","f","var s=this,vl,la,vla;l=l?l:'';f=f?f:1 ;if(!s[c])return false;vl='pageName,purchaseID,channel,server,pageType,campaign,state,zip,events,products,transactionID';for(var n=1;n<75;n++){vl+=',prop'+n+',eVar'+n+',hier'+n;}if(l&&(f==1||f==2)){if(f==1){vl=l;}if(f==2){la=s.split(l,',');vla=s.split(vl,',');vl='';for(x in la){for(y in vla){if(la[x]==vla[y]){vla[y]='';}}}for(y in vla){vl+=vla[y]?','+vla[y]:'';}}s.pt(vl,',',c,0);return true;}else if(l==''&&f==1){s.pt(vl,',',c,0);return true;}else{return false;}");s.clearVars=new Function("t","var s=this;s[t]='';");s.lowercaseVars=new Function("t","var s=this;if(s[t]){s[t]=s[t].toString();s[t]=s[t].toLowerCase();}");s.linkHandler=new Function("p","t","r","c","var s=this;var o=s.p_go(),h=o.href;var i,l;var n=p?'':t=='e'?'linkInternalFilters':t=='d'?'linkDownloadFileTypes':'';t=t?t:'o';if(!h||(s.linkType&&(h||s.linkName)))return '';i=h.indexOf('?');h=s.linkLeaveQueryString||i<0?h:h.substring(0,i);if(n){p=s.rep(s[n],',','|');}l=s.pt(p,'|','p_gn',h.toLowerCase());if(l&&n!='linkInternalFilters'||(!l&&n=='linkInternalFilters')){s.linkName=l=='[['?'':l;s.linkType=t;if(c){s.linkName=s.linkType=s.lnk=s.eo='';}return r?o:h;}return '';");s.p_gn=new Function("t","h","var i=t?t.indexOf('~'):-1,n,x;if(t&&h){n=i<0?'':t.substring(0,i);x=t.substring(i+1);if(h.indexOf(x.toLowerCase())>-1)return n?n:'[[';}return 0;");s.setupDynamicObjectIDs=new Function("var s=this;if(!s.doi){s.doi=1;if(s.apv>3&&(!s.isie||!s.ismac||s.apv>=5)){if(s.wd.attachEvent)s.wd.attachEvent('onload',s.setOIDs);else if(s.wd.addEventListener)s.wd.addEventListener('load',s.setOIDs,false);else{s.doiol=s.wd.onload;s.wd.onload=s.setOIDs}}s.wd.s_semaphore=1}");s.setOIDs=new Function("e","var s=s_c_il["+s._in+"],b=s.eh(s.wd,'onload'),o='onclick',x,l,u,c,i,a=new Array;if(s.doiol){if(b)s[b]=s.wd[b];s.doiol(e)}if(s.d.links){for(i=0;i<s.d.links.length;i++){l=s.d.links[i];c=l[o]?''+l[o]:'';b=s.eh(l,o);z=l[b]?''+l[b]:'';u=s.getObjectID(l);if(u&&c.indexOf('s_objectID')<0&&z.indexOf('s_objectID')<0){u=s.repl(u,'\"','');u=s.repl(u,'\\n','').substring(0,97);l.s_oc=l[o];a[u]=a[u]?a[u]+1:1;x='';if(c.indexOf('.t(')>=0||c.indexOf('.tl(')>=0||c.indexOf('s_gs(')>=0)x='var x=\".tl(\";';x+='s_objectID=\"'+u+'_'+a[u]+'\";return this.s_oc?this.s_oc(e):true';if(s.isns&&s.apv>=5)l.setAttribute(o,x);l[o]=new Function('e',x)}}}s.wd.s_semaphore=0;return true");s.getPercentPageViewed=new Function("","var s=this;if(typeof(s.linkType)=='undefined'||s.linkType=='e'){var v=s.c_r('s_ppv');s.c_w('s_ppv',0);return v;}");s.getPPVCalc=new Function("","var s=s_c_il["+s._in+"],dh=Math.max(Math.max(s.d.body.scrollHeight,s.d.documentElement.scrollHeight),Math.max(s.d.body.offsetHeight,s.d.documentElement.offsetHeight),Math.max(s.d.body.clientHeight,s.d.documentElement.clientHeight)),vph=s.wd.innerHeight||(s.d.documentElement.clientHeight||s.d.body.clientHeight),st=s.wd.pageYOffset||(s.wd.document.documentElement.scrollTop||s.wd.document.body.scrollTop),vh=st+vph,pv=Math.round(vh/dh*100),cv=s.c_r('s_ppv'),cpi=cv.indexOf('|'),cpv='',ps='';if(cpi!=-1){cpv=cv.substring(0,cpi);ps=parseInt(cv.substring(cpi+1));}else{cpv=ps=0;}if(pv<=100){if(pv>parseInt(cpv)){ps=pv-Math.round(vph/dh*100);s.c_w('s_ppv',pv+'|'+ps);}}else{s.c_w('s_ppv','');}");s.getPPVSetup=new Function("","var s=this;if(s.wd.addEventListener){s.wd.addEventListener('load',s.getPPVCalc,false);s.wd.addEventListener('scroll',s.getPPVCalc,false);s.wd.addEventListener('resize',s.getPPVCalc,false);}else if(s.wd.attachEvent){s.wd.attachEvent('onload',s.getPPVCalc);s.wd.attachEvent('onscroll',s.getPPVCalc);s.wd.attachEvent('onresize',s.getPPVCalc);}");s.getPPVSetup();s.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.getTimezoneOffset()*60000);tz=new Date(utc + (3600000*z));thisy=tz.getFullYear();var days=['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday'];if(thisy!=y){return'Data Not Available'}else{;thish=tz.getHours();thismin=tz.getMinutes();thisd=tz.getDay();var dow=days[thisd];var ap='AM';var dt='Weekday';var mint='00';if(thismin>30){mint='30'}if(thish>=12){ap='PM';thish=thish-12};if (thish==0){thish=12};if(thisd==6||thisd==0){dt='Weekend'};var timestring=thish+':'+mint+ap;var daystring=dow;var endstring=dt;if(t=='h'){return timestring}if(t=='d'){return daystring};if(t=='w'){return endstring}}};");s.detectRIA=new Function("cn","fp","sp","mfv","msv","sf","cn=cn?cn:'s_ria';msv=msv?msv:2;mfv=mfv?mfv:10;var s=this,sv='',fv=-1,dwi=0,fr='',sr='',w,mt=s.n.mimeTypes,uk=s.c_r(cn),k=s.c_w('s_cc','true',0)?'Y':'N';fk=uk.substring(0,uk.indexOf('|'));sk=uk.substring(uk.indexOf('|')+1,uk.length);if(k=='Y'&&s.p_fo('detectRIA')){if(uk&&!sf){if(fp){s[fp]=fk;}if(sp){s[sp]=sk;}return false;}if(!fk&&fp){if(s.pl&&s.pl.length){if(s.pl['Shockwave Flash 2.0'])fv=2;x=s.pl['Shockwave Flash'];if(x){fv=0;z=x.description;if(z)fv=z.substring(16,z.indexOf('.'));}}else if(navigator.plugins&&navigator.plugins.length){x=navigator.plugins['Shockwave Flash'];if(x){fv=0;z=x.description;if(z)fv=z.substring(16,z.indexOf('.'));}}else if(mt&&mt.length){x=mt['application/x-shockwave-flash'];if(x&&x.enabledPlugin)fv=0;}if(fv<=0)dwi=1;w=s.u.indexOf('Win')!=-1?1:0;if(dwi&&s.isie&&w&&execScript){result=false;for(var i=mfv;i>=3&&result!=true;i--){execScript('on error resume next: result = IsObject(CreateObject(\"ShockwaveFlash.ShockwaveFlash.'+i+'\"))','VBScript');fv=i;}}fr=fv==-1?'flash not detected':fv==0?'flash enabled (no version)':'flash '+fv;}if(!sk&&sp&&s.apv>=4.1){var tc='try{x=new ActiveXObject(\"AgControl.A'+'gControl\");for(var i=msv;i>0;i--){for(var j=9;j>=0;j--){if(x.is'+'VersionSupported(i+\".\"+j)){sv=i+\".\"+j;break;}}if(sv){break;}'+'}}catch(e){try{x=navigator.plugins[\"Silverlight Plug-In\"];sv=x'+'.description.substring(0,x.description.indexOf(\".\")+2);}catch('+'e){}}';eval(tc);sr=sv==''?'silverlight not detected':'silverlight '+sv;}if((fr&&fp)||(sr&&sp)){s.c_w(cn,fr+'|'+sr,0);if(fr)s[fp]=fr;if(sr)s[sp]=sr;}}");s.trackTNT=new Function("v","p","b","var s=this,n='s_tnt',p=p?p:n,v=v?v:n,r='',pm=false,b=b?b:true;if(s.getQueryParam){pm=s.getQueryParam(p);}if(pm){r+=(pm+',');}if(s.wd[v]!=undefined){r+=s.wd[v];}if(b){s.wd[v]='';}return r;");s.p_fo=new Function("n","var s=this;if(!s.__fo){s.__fo=new Object;}if(!s.__fo[n]){s.__fo[n]=new Object;return 1;}else {return 0;}");s.apl=new Function("l","v","d","u","var s=this,m=0;if(!l)l='';if(u){var i,n,a=s.split(l,d);for(i=0;i<a.length;i++){n=a[i];m=m||(u==1?(n==v):(n.toLowerCase()==v.toLowerCase()));}}if(!m)l=l?l+d+v:v;return l");s.escp=new Function("x","var s=this;if(typeof(encodeURIComponent)=='function'&&x)return encodeURIComponent(s.rep(''+x,'+',' '));else return escape(s.rep(''+x,'+',' '));");s.unescp=new Function("x","var s=this;if(typeof(decodeURIComponent)=='function'&&x)return decodeURIComponent(s.rep(''+x,'+',' '));else return unescape(s.rep(''+x,'+',' '));");s.split=new Function("l","d","var i,x=0,a=new Array;while(l){i=l.indexOf(d);i=i>-1?i:l.length;a[x++]=l.substring(0,i);l=l.substring(i+d.length);}return a");s.repl=new Function("x","o","n","var i=x.indexOf(o),l=n.length;while(x&&i>=0){x=x.substring(0,i)+n+x.substring(i+o.length);i=x.indexOf(o,i+l)}return x");s.ia=new Function("ar","v","for(var i=0;i<ar.length;i++){if(ar[i]==v)return i}return -1");s.inList=new Function("v","l","d","var s=this,ar=Array(),i=0,d=(d)?d:',';if(typeof(l)=='string'){if(s.split)ar=s.split(l,d);else if(l.split)ar=l.split(d);else return-1}else ar=l;while(i<ar.length){if(v==ar[i])return true;i++}return false;");s.p_go=new Function("var s=this;if(!s.eo&&!s.lnk)return '';var o=s.eo?s.eo:s.lnk;var y=s.ot(o);var n=s.oid(o);var x=o.s_oidt;if(s.eo&&o==s.eo){while(o&&!n&&y!='BODY'){o=o.parentElement?o.parentElement:o.parentNode;if(!o)return '';y=s.ot(o);n=s.oid(o);x=o.s_oidt}}return o?o:'';");s.join=new Function("v","p","var s = this;var f,b,d,w;if(p){f=p.front?p.front:'';b=p.back?p.back:'';d=p.delim?p.delim:'';w=p.wrap?p.wrap:'';}var str='';for(var x=0;x<v.length;x++){if(typeof(v[x])=='object' )str+=s.join( v[x],p);else str+=w+v[x]+w;if(x<v.length-1)str+=d;}return f+str+b;");if(!s.__ccucr){s.c_rr=s.c_r;s.__ccucr=true;s.c_r=new Function("k","var s=this,d=new Date,v=s.c_rr(k),c=s.c_rr('s_pers'),i,m,e;if(v)return v;k=s.ape(k);i=c.indexOf(' '+k+'=');c=i<0?s.c_rr('s_sess'):c;i=c.indexOf(' '+k+'=');m=i<0?i:c.indexOf('|',i);e=i<0?i:c.indexOf(';',i);m=m>0?m:e;v=i<0?'':s.epa(c.substring(i+2+k.length,m<0?c.length:m));if(m>0&&m!=e)if(parseInt(c.substring(m+1,e<0?c.length:e))<d.getTime()){d.setTime(d.getTime()-60000);s.c_w(s.epa(k),'',d);v='';}return v;")}if(!s.__ccucw){s.c_wr=s.c_w;s.__ccucw=true;s.c_w=new Function("k","v","e","this.new2 = true;var s=this,d=new Date,ht=0,pn='s_pers',sn='s_sess',pc=0,sc=0,pv,sv,c,i,t;d.setTime(d.getTime()-60000);if(s.c_rr(k)) s.c_wr(k,'',d);k=s.ape(k);pv=s.c_rr(pn);i=pv.indexOf(' '+k+'=');if(i>-1){pv=pv.substring(0,i)+pv.substring(pv.indexOf(';',i)+1);pc=1;}sv=s.c_rr(sn);i=sv.indexOf(' '+k+'=');if(i>-1){sv=sv.substring(0,i)+sv.substring(sv.indexOf(';',i)+1);sc=1;}d=new Date;if(e){if(e.getTime()>d.getTime()){pv+=' '+k+'='+s.ape(v)+'|'+e.getTime()+';';pc=1;}}else{sv+=' '+k+'='+s.ape(v)+';';sc=1;}if(sc) s.c_wr(sn,sv,0);if(pc){t=pv;while(t&&t.indexOf(';')!=-1){var t1=parseInt(t.substring(t.indexOf('|')+1,t.indexOf(';')));t=t.substring(t.indexOf(';')+1);ht=ht<t1?t1:ht;}d.setTime(ht);s.c_wr(pn,pv,d);}return v==s.c_r(s.epa(k));")}s.visitorNamespace="salesforce";s.trackingServer="omtr1.partners.salesforce.com";s.trackingServerSecure="omtr2.partners.salesforce.com";s.visitorMigrationServer="salesforce.122.2o7.net";var s_code="",s_objectID;function s_gi(k,o,C){var q="s.version='H.24';s.an=s_an;s.logDebug=function(m){var s=this,tcf=new Function('var e;try{console.log(\"'+s.rep(s.rep(m,\"\\n\",\"\\\\n\"),\"\\\"\",\"\\\\\\\"\")+'\");}catch(e){}');tcf()};s.cls=function(x,c){var i,y='';if(!c)c=this.an;for(i=0;i<x.length;i++){n=x.substring(i,i+1);if(c.indexOf(n)>=0)y+=n}return y};s.fl=function(x,l){return x?(''+x).substring(0,l):x};s.co=function(o){if(!o)return o;var n=new Object,x;for(x in o)if(x.indexOf('select')<0&&x.indexOf('filter')<0)n[x]=o[x];return n};s.num=function(x){x=''+x;for(var p=0;p<x.length;p++)if(('0123456789').indexOf(x.substring(p,p+1))<0)return 0;return 1};s.rep=s_rep;s.sp=s_sp;s.jn=s_jn;s.ape=function(x){var s=this,h='0123456789ABCDEF',i,c=s.charSet,n,l,e,y='';c=c?c.toUpperCase():'';if(x){x=''+x;if(s.em==3)x=encodeURIComponent(x);else if(c=='AUTO'&&('').charCodeAt){for(i=0;i<x.length;i++){c=x.substring(i,i+1);n=x.charCodeAt(i);if(n>127){l=0;e='';while(n||l<4){e=h.substring(n%16,n%16+1)+e;n=(n-n%16)/16;l++}y+='%u'+e}else if(c=='+')y+='%2B';else y+=escape(c)}x=y}else x=escape(''+x);x=s.rep(x,'+','%2B');if(c&&c!='AUTO'&&s.em==1&&x.indexOf('%u')<0&&x.indexOf('%U')<0){i=x.indexOf('%');while(i>=0){i++;if(h.substring(8).indexOf(x.substring(i,i+1).toUpperCase())>=0)return x.substring(0,i)+'u00'+x.substring(i);i=x.indexOf('%',i)}}}return x};s.epa=function(x){var s=this;if(x){x=s.rep(''+x,'+',' ');return s.em==3?decodeURIComponent(x):unescape(x)}return x};s.pt=function(x,d,f,a){var s=this,t=x,z=0,y,r;while(t){y=t.indexOf(d);y=y<0?t.length:y;t=t.substring(0,y);r=s[f](t,a);if(r)return r;z+=y+d.length;t=x.substring(z,x.length);t=z<x.length?t:''}return ''};s.isf=function(t,a){var c=a.indexOf(':');if(c>=0)a=a.substring(0,c);c=a.indexOf('=');if(c>=0)a=a.substring(0,c);if(t.substring(0,2)=='s_')t=t.substring(2);return (t!=''&&t==a)};s.fsf=function(t,a){var s=this;if(s.pt(a,',','isf',t))s.fsg+=(s.fsg!=''?',':'')+t;return 0};s.fs=function(x,f){var s=this;s.fsg='';s.pt(x,',','fsf',f);return s.fsg};s.si=function(){var s=this,i,k,v,c=s_gi+'var s=s_gi(\"'+s.oun+'\");s.sa(\"'+s.un+'\");';for(i=0;i<s.va_g.length;i++){k=s.va_g[i];v=s[k];if(v!=undefined){if(typeof(v)!='number')c+='s.'+k+'=\"'+s_fe(v)+'\";';else c+='s.'+k+'='+v+';'}}c+=\"s.lnk=s.eo=s.linkName=s.linkType=s.wd.s_objectID=s.ppu=s.pe=s.pev1=s.pev2=s.pev3='';\";return c};s.c_d='';s.c_gdf=function(t,a){var s=this;if(!s.num(t))return 1;return 0};s.c_gd=function(){var s=this,d=s.wd.location.hostname,n=s.fpCookieDomainPeriods,p;if(!n)n=s.cookieDomainPeriods;if(d&&!s.c_d){n=n?parseInt(n):2;n=n>2?n:2;p=d.lastIndexOf('.');if(p>=0){while(p>=0&&n>1){p=d.lastIndexOf('.',p-1);n--}s.c_d=p>0&&s.pt(d,'.','c_gdf',0)?d.substring(p):d}}return s.c_d};s.c_r=function(k){var s=this;k=s.ape(k);var c=' '+s.d.cookie,i=c.indexOf(' '+k+'='),e=i<0?i:c.indexOf(';',i),v=i<0?'':s.epa(c.substring(i+2+k.length,e<0?c.length:e));return v!='[[B]]'?v:''};s.c_w=function(k,v,e){var s=this,d=s.c_gd(),l=s.cookieLifetime,t;v=''+v;l=l?(''+l).toUpperCase():'';if(e&&l!='SESSION'&&l!='NONE'){t=(v!=''?parseInt(l?l:0):-60);if(t){e=new Date;e.setTime(e.getTime()+(t*1000))}}if(k&&l!='NONE'){s.d.cookie=k+'='+s.ape(v!=''?v:'[[B]]')+'; path=/;'+(e&&l!='SESSION'?' expires='+e.toGMTString()+';':'')+(d?' domain='+d+';':'');return s.c_r(k)==v}return 0};s.eh=function(o,e,r,f){var s=this,b='s_'+e+'_'+s._in,n=-1,l,i,x;if(!s.ehl)s.ehl=new Array;l=s.ehl;for(i=0;i<l.length&&n<0;i++){if(l[i].o==o&&l[i].e==e)n=i}if(n<0){n=i;l[n]=new Object}x=l[n];x.o=o;x.e=e;f=r?x.b:f;if(r||f){x.b=r?0:o[e];x.o[e]=f}if(x.b){x.o[b]=x.b;return b}return 0};s.cet=function(f,a,t,o,b){var s=this,r,tcf;if(s.apv>=5&&(!s.isopera||s.apv>=7)){tcf=new Function('s','f','a','t','var e,r;try{r=s[f](a)}catch(e){r=s[t](e)}return r');r=tcf(s,f,a,t)}else{if(s.ismac&&s.u.indexOf('MSIE 4')>=0)r=s[b](a);else{s.eh(s.wd,'onerror',0,o);r=s[f](a);s.eh(s.wd,'onerror',1)}}return r};s.gtfset=function(e){var s=this;return s.tfs};s.gtfsoe=new Function('e','var s=s_c_il['+s._in+'],c;s.eh(window,\"onerror\",1);s.etfs=1;c=s.t();if(c)s.d.write(c);s.etfs=0;return true');s.gtfsfb=function(a){return window};s.gtfsf=function(w){var s=this,p=w.parent,l=w.location;s.tfs=w;if(p&&p.location!=l&&p.location.host==l.host){s.tfs=p;return s.gtfsf(s.tfs)}return s.tfs};s.gtfs=function(){var s=this;if(!s.tfs){s.tfs=s.wd;if(!s.etfs)s.tfs=s.cet('gtfsf',s.tfs,'gtfset',s.gtfsoe,'gtfsfb')}return s.tfs};s.mrq=function(u){var s=this,l=s.rl[u],n,r;s.rl[u]=0;if(l)for(n=0;n<l.length;n++){r=l[n];s.mr(0,0,r.r,r.t,r.u)}};s.flushBufferedRequests=function(){};s.mr=function(sess,q,rs,ta,u){var s=this,dc=s.dc,t1=s.trackingServer,t2=s.trackingServerSecure,tb=s.trackingServerBase,p='.sc',ns=s.visitorNamespace,un=s.cls(u?u:(ns?ns:s.fun)),r=new Object,l,imn='s_i_'+(un),im,b,e;if(!rs){if(t1){if(t2&&s.ssl)t1=t2}else{if(!tb)tb='2o7.net';if(dc)dc=(''+dc).toLowerCase();else dc='d1';if(tb=='2o7.net'){if(dc=='d1')dc='112';else if(dc=='d2')dc='122';p=''}t1=un+'.'+dc+'.'+p+tb}rs='http'+(s.ssl?'s':'')+'://'+t1+'/b/ss/'+s.un+'/'+(s.mobile?'5.1':'1')+'/'+s.version+(s.tcn?'T':'')+'/'+sess+'?AQB=1&ndh=1'+(q?q:'')+'&AQE=1';if(s.isie&&!s.ismac)rs=s.fl(rs,2047)}if(s.d.images&&s.apv>=3&&(!s.isopera||s.apv>=7)&&(s.ns6<0||s.apv>=6.1)){if(!s.rc)s.rc=new Object;if(!s.rc[un]){s.rc[un]=1;if(!s.rl)s.rl=new Object;s.rl[un]=new Array;setTimeout('if(window.s_c_il)window.s_c_il['+s._in+'].mrq(\"'+un+'\")',750)}else{l=s.rl[un];if(l){r.t=ta;r.u=un;r.r=rs;l[l.length]=r;return ''}imn+='_'+s.rc[un];s.rc[un]++}im=s.wd[imn];if(!im)im=s.wd[imn]=new Image;im.s_l=0;im.onload=new Function('e','this.s_l=1;var wd=window,s;if(wd.s_c_il){s=wd.s_c_il['+s._in+'];s.mrq(\"'+un+'\");s.nrs--;if(!s.nrs)s.m_m(\"rr\")}');if(!s.nrs){s.nrs=1;s.m_m('rs')}else s.nrs++;if(s.debugTracking){var d='AppMeasurement Debug: '+rs,dl=s.sp(rs,'&'),dln;for(dln=0;dln<dl.length;dln++)d+=\"\\n\\t\"+s.epa(dl[dln]);s.logDebug(d)}im.src=rs;if((!ta||ta=='_self'||ta=='_top'||(s.wd.name&&ta==s.wd.name))&&rs.indexOf('&pe=')>=0){b=e=new Date;while(!im.s_l&&e.getTime()-b.getTime()<500)e=new Date}return ''}return '<im'+'g sr'+'c=\"'+rs+'\" width=1 height=1 border=0 alt=\"\">'};s.gg=function(v){var s=this;if(!s.wd['s_'+v])s.wd['s_'+v]='';return s.wd['s_'+v]};s.glf=function(t,a){if(t.substring(0,2)=='s_')t=t.substring(2);var s=this,v=s.gg(t);if(v)s[t]=v};s.gl=function(v){var s=this;if(s.pg)s.pt(v,',','glf',0)};s.rf=function(x){var s=this,y,i,j,h,p,l=0,q,a,b='',c='',t;if(x&&x.length>255){y=''+x;i=y.indexOf('?');if(i>0){q=y.substring(i+1);y=y.substring(0,i);h=y.toLowerCase();j=0;if(h.substring(0,7)=='http://')j+=7;else if(h.substring(0,8)=='https://')j+=8;i=h.indexOf(\"/\",j);if(i>0){h=h.substring(j,i);p=y.substring(i);y=y.substring(0,i);if(h.indexOf('google')>=0)l=',q,ie,start,search_key,word,kw,cd,';else if(h.indexOf('yahoo.co')>=0)l=',p,ei,';if(l&&q){a=s.sp(q,'&');if(a&&a.length>1){for(j=0;j<a.length;j++){t=a[j];i=t.indexOf('=');if(i>0&&l.indexOf(','+t.substring(0,i)+',')>=0)b+=(b?'&':'')+t;else c+=(c?'&':'')+t}if(b&&c)q=b+'&'+c;else c=''}i=253-(q.length-c.length)-y.length;x=y+(i>0?p.substring(0,i):'')+'?'+q}}}}return x};s.s2q=function(k,v,vf,vfp,f){var s=this,qs='',sk,sv,sp,ss,nke,nk,nf,nfl=0,nfn,nfm;if(k==\"contextData\")k=\"c\";if(v){for(sk in v) {if((!f||sk.substring(0,f.length)==f)&&v[sk]&&(!vf||vf.indexOf(','+(vfp?vfp+'.':'')+sk+',')>=0)){nfm=0;if(nfl)for(nfn=0;nfn<nfl.length;nfn++)if(sk.substring(0,nfl[nfn].length)==nfl[nfn])nfm=1;if(!nfm){if(qs=='')qs+='&'+k+'.';sv=v[sk];if(f)sk=sk.substring(f.length);if(sk.length>0){nke=sk.indexOf('.');if(nke>0){nk=sk.substring(0,nke);nf=(f?f:'')+nk+'.';if(!nfl)nfl=new Array;nfl[nfl.length]=nf;qs+=s.s2q(nk,v,vf,vfp,nf)}else{if(typeof(sv)=='boolean'){if(sv)sv='true';else sv='false'}if(sv){if(vfp=='retrieveLightData'&&f.indexOf('.contextData.')<0){sp=sk.substring(0,4);ss=sk.substring(4);if(sk=='transactionID')sk='xact';else if(sk=='channel')sk='ch';else if(sk=='campaign')sk='v0';else if(s.num(ss)){if(sp=='prop')sk='c'+ss;else if(sp=='eVar')sk='v'+ss;else if(sp=='list')sk='l'+ss;else if(sp=='hier'){sk='h'+ss;sv=sv.substring(0,255)}}}qs+='&'+s.ape(sk)+'='+s.ape(sv)}}}}}}if(qs!='')qs+='&.'+k}return qs};s.hav=function(){var s=this,qs='',l,fv='',fe='',mn,i,e;if(s.lightProfileID){l=s.va_m;fv=s.lightTrackVars;if(fv)fv=','+fv+','+s.vl_mr+','}else{l=s.va_t;if(s.pe||s.linkType){fv=s.linkTrackVars;fe=s.linkTrackEvents;if(s.pe){mn=s.pe.substring(0,1).toUpperCase()+s.pe.substring(1);if(s[mn]){fv=s[mn].trackVars;fe=s[mn].trackEvents}}}if(fv)fv=','+fv+','+s.vl_l+','+s.vl_l2;if(fe){fe=','+fe+',';if(fv)fv+=',events,'}if (s.events2)e=(e?',':'')+s.events2}for(i=0;i<l.length;i++){var k=l[i],v=s[k],b=k.substring(0,4),x=k.substring(4),n=parseInt(x),q=k;if(!v)if(k=='events'&&e){v=e;e=''}if(v&&(!fv||fv.indexOf(','+k+',')>=0)&&k!='linkName'&&k!='linkType'){if(k=='timestamp')q='ts';else if(k=='dynamicVariablePrefix')q='D';else if(k=='visitorID')q='vid';else if(k=='pageURL'){q='g';v=s.fl(v,255)}else if(k=='referrer'){q='r';v=s.fl(s.rf(v),255)}else if(k=='vmk'||k=='visitorMigrationKey')q='vmt';else if(k=='visitorMigrationServer'){q='vmf';if(s.ssl&&s.visitorMigrationServerSecure)v=''}else if(k=='visitorMigrationServerSecure'){q='vmf';if(!s.ssl&&s.visitorMigrationServer)v=''}else if(k=='charSet'){q='ce';if(v.toUpperCase()=='AUTO')v='ISO8859-1';else if(s.em==2||s.em==3)v='UTF-8'}else if(k=='visitorNamespace')q='ns';else if(k=='cookieDomainPeriods')q='cdp';else if(k=='cookieLifetime')q='cl';else if(k=='variableProvider')q='vvp';else if(k=='currencyCode')q='cc';else if(k=='channel')q='ch';else if(k=='transactionID')q='xact';else if(k=='campaign')q='v0';else if(k=='resolution')q='s';else if(k=='colorDepth')q='c';else if(k=='javascriptVersion')q='j';else if(k=='javaEnabled')q='v';else if(k=='cookiesEnabled')q='k';else if(k=='browserWidth')q='bw';else if(k=='browserHeight')q='bh';else if(k=='connectionType')q='ct';else if(k=='homepage')q='hp';else if(k=='plugins')q='p';else if(k=='events'){if(e)v+=(v?',':'')+e;if(fe)v=s.fs(v,fe)}else if(k=='events2')v='';else if(k=='contextData'){qs+=s.s2q('c',s[k],fv,k,0);v=''}else if(k=='lightProfileID')q='mtp';else if(k=='lightStoreForSeconds'){q='mtss';if(!s.lightProfileID)v=''}else if(k=='lightIncrementBy'){q='mti';if(!s.lightProfileID)v=''}else if(k=='retrieveLightProfiles')q='mtsr';else if(k=='deleteLightProfiles')q='mtsd';else if(k=='retrieveLightData'){if(s.retrieveLightProfiles)qs+=s.s2q('mts',s[k],fv,k,0);v=''}else if(s.num(x)){if(b=='prop')q='c'+n;else if(b=='eVar')q='v'+n;else if(b=='list')q='l'+n;else if(b=='hier'){q='h'+n;v=s.fl(v,255)}}if(v)qs+='&'+s.ape(q)+'='+(k.substring(0,3)!='pev'?s.ape(v):v)}}return qs};s.ltdf=function(t,h){t=t?t.toLowerCase():'';h=h?h.toLowerCase():'';var qi=h.indexOf('?');h=qi>=0?h.substring(0,qi):h;if(t&&h.substring(h.length-(t.length+1))=='.'+t)return 1;return 0};s.ltef=function(t,h){t=t?t.toLowerCase():'';h=h?h.toLowerCase():'';if(t&&h.indexOf(t)>=0)return 1;return 0};s.lt=function(h){var s=this,lft=s.linkDownloadFileTypes,lef=s.linkExternalFilters,lif=s.linkInternalFilters;lif=lif?lif:s.wd.location.hostname;h=h.toLowerCase();if(s.trackDownloadLinks&&lft&&s.pt(lft,',','ltdf',h))return 'd';if(s.trackExternalLinks&&h.substring(0,1)!='#'&&(lef||lif)&&(!lef||s.pt(lef,',','ltef',h))&&(!lif||!s.pt(lif,',','ltef',h)))return 'e';return ''};s.lc=new Function('e','var s=s_c_il['+s._in+'],b=s.eh(this,\"onclick\");s.lnk=s.co(this);s.t();s.lnk=0;if(b)return this[b](e);return true');s.bc=new Function('e','var s=s_c_il['+s._in+'],f,tcf;if(s.d&&s.d.all&&s.d.all.cppXYctnr)return;s.eo=e.srcElement?e.srcElement:e.target;tcf=new Function(\"s\",\"var e;try{if(s.eo&&(s.eo.tagName||s.eo.parentElement||s.eo.parentNode))s.t()}catch(e){}\");tcf(s);s.eo=0');s.oh=function(o){var s=this,l=s.wd.location,h=o.href?o.href:'',i,j,k,p;i=h.indexOf(':');j=h.indexOf('?');k=h.indexOf('/');if(h&&(i<0||(j>=0&&i>j)||(k>=0&&i>k))){p=o.protocol&&o.protocol.length>1?o.protocol:(l.protocol?l.protocol:'');i=l.pathname.lastIndexOf('/');h=(p?p+'//':'')+(o.host?o.host:(l.host?l.host:''))+(h.substring(0,1)!='/'?l.pathname.substring(0,i<0?0:i)+'/':'')+h}return h};s.ot=function(o){var t=o.tagName;if(o.tagUrn||(o.scopeName&&o.scopeName.toUpperCase()!='HTML'))return '';t=t&&t.toUpperCase?t.toUpperCase():'';if(t=='SHAPE')t='';if(t){if((t=='INPUT'||t=='BUTTON')&&o.type&&o.type.toUpperCase)t=o.type.toUpperCase();else if(!t&&o.href)t='A';}return t};s.oid=function(o){var s=this,t=s.ot(o),p,c,n='',x=0;if(t&&!o.s_oid){p=o.protocol;c=o.onclick;if(o.href&&(t=='A'||t=='AREA')&&(!c||!p||p.toLowerCase().indexOf('javascript')<0))n=s.oh(o);else if(c){n=s.rep(s.rep(s.rep(s.rep(''+c,\"\\r\",''),\"\\n\",''),\"\\t\",''),' ','');x=2}else if(t=='INPUT'||t=='SUBMIT'){if(o.value)n=o.value;else if(o.innerText)n=o.innerText;else if(o.textContent)n=o.textContent;x=3}else if(o.src&&t=='IMAGE')n=o.src;if(n){o.s_oid=s.fl(n,100);o.s_oidt=x}}return o.s_oid};s.rqf=function(t,un){var s=this,e=t.indexOf('='),u=e>=0?t.substring(0,e):'',q=e>=0?s.epa(t.substring(e+1)):'';if(u&&q&&(','+u+',').indexOf(','+un+',')>=0){if(u!=s.un&&s.un.indexOf(',')>=0)q='&u='+u+q+'&u=0';return q}return ''};s.rq=function(un){if(!un)un=this.un;var s=this,c=un.indexOf(','),v=s.c_r('s_sq'),q='';if(c<0)return s.pt(v,'&','rqf',un);return s.pt(un,',','rq',0)};s.sqp=function(t,a){var s=this,e=t.indexOf('='),q=e<0?'':s.epa(t.substring(e+1));s.sqq[q]='';if(e>=0)s.pt(t.substring(0,e),',','sqs',q);return 0};s.sqs=function(un,q){var s=this;s.squ[un]=q;return 0};s.sq=function(q){var s=this,k='s_sq',v=s.c_r(k),x,c=0;s.sqq=new Object;s.squ=new Object;s.sqq[q]='';s.pt(v,'&','sqp',0);s.pt(s.un,',','sqs',q);v='';for(x in s.squ)if(x&&(!Object||!Object.prototype||!Object.prototype[x]))s.sqq[s.squ[x]]+=(s.sqq[s.squ[x]]?',':'')+x;for(x in s.sqq)if(x&&(!Object||!Object.prototype||!Object.prototype[x])&&s.sqq[x]&&(x==q||c<2)){v+=(v?'&':'')+s.sqq[x]+'='+s.ape(x);c++}return s.c_w(k,v,0)};s.wdl=new Function('e','var s=s_c_il['+s._in+'],r=true,b=s.eh(s.wd,\"onload\"),i,o,oc;if(b)r=this[b](e);for(i=0;i<s.d.links.length;i++){o=s.d.links[i];oc=o.onclick?\"\"+o.onclick:\"\";if((oc.indexOf(\"s_gs(\")<0||oc.indexOf(\".s_oc(\")>=0)&&oc.indexOf(\".tl(\")<0)s.eh(o,\"onclick\",0,s.lc);}return r');s.wds=function(){var s=this;if(s.apv>3&&(!s.isie||!s.ismac||s.apv>=5)){if(s.b&&s.b.attachEvent)s.b.attachEvent('onclick',s.bc);else if(s.b&&s.b.addEventListener)s.b.addEventListener('click',s.bc,false);else s.eh(s.wd,'onload',0,s.wdl)}};s.vs=function(x){var s=this,v=s.visitorSampling,g=s.visitorSamplingGroup,k='s_vsn_'+s.un+(g?'_'+g:''),n=s.c_r(k),e=new Date,y=e.getYear();e.setYear(y+10+(y<1900?1900:0));if(v){v*=100;if(!n){if(!s.c_w(k,x,e))return 0;n=x}if(n%10000>v)return 0}return 1};s.dyasmf=function(t,m){if(t&&m&&m.indexOf(t)>=0)return 1;return 0};s.dyasf=function(t,m){var s=this,i=t?t.indexOf('='):-1,n,x;if(i>=0&&m){var n=t.substring(0,i),x=t.substring(i+1);if(s.pt(x,',','dyasmf',m))return n}return 0};s.uns=function(){var s=this,x=s.dynamicAccountSelection,l=s.dynamicAccountList,m=s.dynamicAccountMatch,n,i;s.un=s.un.toLowerCase();if(x&&l){if(!m)m=s.wd.location.host;if(!m.toLowerCase)m=''+m;l=l.toLowerCase();m=m.toLowerCase();n=s.pt(l,';','dyasf',m);if(n)s.un=n}i=s.un.indexOf(',');s.fun=i<0?s.un:s.un.substring(0,i)};s.sa=function(un){var s=this;s.un=un;if(!s.oun)s.oun=un;else if((','+s.oun+',').indexOf(','+un+',')<0)s.oun+=','+un;s.uns()};s.m_i=function(n,a){var s=this,m,f=n.substring(0,1),r,l,i;if(!s.m_l)s.m_l=new Object;if(!s.m_nl)s.m_nl=new Array;m=s.m_l[n];if(!a&&m&&m._e&&!m._i)s.m_a(n);if(!m){m=new Object,m._c='s_m';m._in=s.wd.s_c_in;m._il=s._il;m._il[m._in]=m;s.wd.s_c_in++;m.s=s;m._n=n;m._l=new Array('_c','_in','_il','_i','_e','_d','_dl','s','n','_r','_g','_g1','_t','_t1','_x','_x1','_rs','_rr','_l');s.m_l[n]=m;s.m_nl[s.m_nl.length]=n}else if(m._r&&!m._m){r=m._r;r._m=m;l=m._l;for(i=0;i<l.length;i++)if(m[l[i]])r[l[i]]=m[l[i]];r._il[r._in]=r;m=s.m_l[n]=r}if(f==f.toUpperCase())s[n]=m;return m};s.m_a=new Function('n','g','e','if(!g)g=\"m_\"+n;var s=s_c_il['+s._in+'],c=s[g+\"_c\"],m,x,f=0;if(!c)c=s.wd[\"s_\"+g+\"_c\"];if(c&&s_d)s[g]=new Function(\"s\",s_ft(s_d(c)));x=s[g];if(!x)x=s.wd[\\'s_\\'+g];if(!x)x=s.wd[g];m=s.m_i(n,1);if(x&&(!m._i||g!=\"m_\"+n)){m._i=f=1;if((\"\"+x).indexOf(\"function\")>=0)x(s);else s.m_m(\"x\",n,x,e)}m=s.m_i(n,1);if(m._dl)m._dl=m._d=0;s.dlt();return f');s.m_m=function(t,n,d,e){t='_'+t;var s=this,i,x,m,f='_'+t,r=0,u;if(s.m_l&&s.m_nl)for(i=0;i<s.m_nl.length;i++){x=s.m_nl[i];if(!n||x==n){m=s.m_i(x);u=m[t];if(u){if((''+u).indexOf('function')>=0){if(d&&e)u=m[t](d,e);else if(d)u=m[t](d);else u=m[t]()}}if(u)r=1;u=m[t+1];if(u&&!m[f]){if((''+u).indexOf('function')>=0){if(d&&e)u=m[t+1](d,e);else if(d)u=m[t+1](d);else u=m[t+1]()}}m[f]=1;if(u)r=1}}return r};s.m_ll=function(){var s=this,g=s.m_dl,i,o;if(g)for(i=0;i<g.length;i++){o=g[i];if(o)s.loadModule(o.n,o.u,o.d,o.l,o.e,1);g[i]=0}};s.loadModule=function(n,u,d,l,e,ln){var s=this,m=0,i,g,o=0,f1,f2,c=s.h?s.h:s.b,b,tcf;if(n){i=n.indexOf(':');if(i>=0){g=n.substring(i+1);n=n.substring(0,i)}else g=\"m_\"+n;m=s.m_i(n)}if((l||(n&&!s.m_a(n,g)))&&u&&s.d&&c&&s.d.createElement){if(d){m._d=1;m._dl=1}if(ln){if(s.ssl)u=s.rep(u,'http:','https:');i='s_s:'+s._in+':'+n+':'+g;b='var s=s_c_il['+s._in+'],o=s.d.getElementById(\"'+i+'\");if(s&&o){if(!o.l&&s.wd.'+g+'){o.l=1;if(o.i)clearTimeout(o.i);o.i=0;s.m_a(\"'+n+'\",\"'+g+'\"'+(e?',\"'+e+'\"':'')+')}';f2=b+'o.c++;if(!s.maxDelay)s.maxDelay=250;if(!o.l&&o.c<(s.maxDelay*2)/100)o.i=setTimeout(o.f2,100)}';f1=new Function('e',b+'}');tcf=new Function('s','c','i','u','f1','f2','var e,o=0;try{o=s.d.createElement(\"script\");if(o){o.type=\"text/javascript\";'+(n?'o.id=i;o.defer=true;o.onload=o.onreadystatechange=f1;o.f2=f2;o.l=0;':'')+'o.src=u;c.appendChild(o);'+(n?'o.c=0;o.i=setTimeout(f2,100)':'')+'}}catch(e){o=0}return o');o=tcf(s,c,i,u,f1,f2)}else{o=new Object;o.n=n+':'+g;o.u=u;o.d=d;o.l=l;o.e=e;g=s.m_dl;if(!g)g=s.m_dl=new Array;i=0;while(i<g.length&&g[i])i++;g[i]=o}}else if(n){m=s.m_i(n);m._e=1}return m};s.voa=function(vo,r){var s=this,l=s.va_g,i,k,v,x;for(i=0;i<l.length;i++){k=l[i];v=vo[k];if(v||vo['!'+k]){if(!r&&(k==\"contextData\"||k==\"retrieveLightData\")&&s[k])for(x in s[k])if(!v[x])v[x]=s[k][x];s[k]=v}}};s.vob=function(vo){var s=this,l=s.va_g,i,k;for(i=0;i<l.length;i++){k=l[i];vo[k]=s[k];if(!vo[k])vo['!'+k]=1}};s.dlt=new Function('var s=s_c_il['+s._in+'],d=new Date,i,vo,f=0;if(s.dll)for(i=0;i<s.dll.length;i++){vo=s.dll[i];if(vo){if(!s.m_m(\"d\")||d.getTime()-vo._t>=s.maxDelay){s.dll[i]=0;s.t(vo)}else f=1}}if(s.dli)clearTimeout(s.dli);s.dli=0;if(f){if(!s.dli)s.dli=setTimeout(s.dlt,s.maxDelay)}else s.dll=0');s.dl=function(vo){var s=this,d=new Date;if(!vo)vo=new Object;s.vob(vo);vo._t=d.getTime();if(!s.dll)s.dll=new Array;s.dll[s.dll.length]=vo;if(!s.maxDelay)s.maxDelay=250;s.dlt()};s.track=s.t=function(vo){var s=this,trk=1,tm=new Date,sed=Math&&Math.random?Math.floor(Math.random()*10000000000000):tm.getTime(),sess='s'+Math.floor(tm.getTime()/10800000)%10+sed,y=tm.getYear(),vt=tm.getDate()+'/'+tm.getMonth()+'/'+(y<1900?y+1900:y)+' '+tm.getHours()+':'+tm.getMinutes()+':'+tm.getSeconds()+' '+tm.getDay()+' '+tm.getTimezoneOffset(),tcf,tfs=s.gtfs(),ta=-1,q='',qs='',code='',vb=new Object;s.gl(s.vl_g);s.uns();s.m_ll();if(!s.td){var tl=tfs.location,a,o,i,x='',c='',v='',p='',bw='',bh='',j='1.0',k=s.c_w('s_cc','true',0)?'Y':'N',hp='',ct='',pn=0,ps;if(String&&String.prototype){j='1.1';if(j.match){j='1.2';if(tm.setUTCDate){j='1.3';if(s.isie&&s.ismac&&s.apv>=5)j='1.4';if(pn.toPrecision){j='1.5';a=new Array;if(a.forEach){j='1.6';i=0;o=new Object;tcf=new Function('o','var e,i=0;try{i=new Iterator(o)}catch(e){}return i');i=tcf(o);if(i&&i.next)j='1.7'}}}}}if(s.apv>=4)x=screen.width+'x'+screen.height;if(s.isns||s.isopera){if(s.apv>=3){v=s.n.javaEnabled()?'Y':'N';if(s.apv>=4){c=screen.pixelDepth;bw=s.wd.innerWidth;bh=s.wd.innerHeight}}s.pl=s.n.plugins}else if(s.isie){if(s.apv>=4){v=s.n.javaEnabled()?'Y':'N';c=screen.colorDepth;if(s.apv>=5){bw=s.d.documentElement.offsetWidth;bh=s.d.documentElement.offsetHeight;if(!s.ismac&&s.b){tcf=new Function('s','tl','var e,hp=0;try{s.b.addBehavior(\"#default#homePage\");hp=s.b.isHomePage(tl)?\"Y\":\"N\"}catch(e){}return hp');hp=tcf(s,tl);tcf=new Function('s','var e,ct=0;try{s.b.addBehavior(\"#default#clientCaps\");ct=s.b.connectionType}catch(e){}return ct');ct=tcf(s)}}}else r=''}if(s.pl)while(pn<s.pl.length&&pn<30){ps=s.fl(s.pl[pn].name,100)+';';if(p.indexOf(ps)<0)p+=ps;pn++}s.resolution=x;s.colorDepth=c;s.javascriptVersion=j;s.javaEnabled=v;s.cookiesEnabled=k;s.browserWidth=bw;s.browserHeight=bh;s.connectionType=ct;s.homepage=hp;s.plugins=p;s.td=1}if(vo){s.vob(vb);s.voa(vo)}if((vo&&vo._t)||!s.m_m('d')){if(s.usePlugins)s.doPlugins(s);var l=s.wd.location,r=tfs.document.referrer;if(!s.pageURL)s.pageURL=l.href?l.href:l;if(!s.referrer&&!s._1_referrer){s.referrer=r;s._1_referrer=1}s.m_m('g');if(s.lnk||s.eo){var o=s.eo?s.eo:s.lnk,p=s.pageName,w=1,t=s.ot(o),n=s.oid(o),x=o.s_oidt,h,l,i,oc;if(s.eo&&o==s.eo){while(o&&!n&&t!='BODY'){o=o.parentElement?o.parentElement:o.parentNode;if(o){t=s.ot(o);n=s.oid(o);x=o.s_oidt}}if(o){oc=o.onclick?''+o.onclick:'';if((oc.indexOf('s_gs(')>=0&&oc.indexOf('.s_oc(')<0)||oc.indexOf('.tl(')>=0)o=0}}if(o){if(n)ta=o.target;h=s.oh(o);i=h.indexOf('?');h=s.linkLeaveQueryString||i<0?h:h.substring(0,i);l=s.linkName;t=s.linkType?s.linkType.toLowerCase():s.lt(h);if(t&&(h||l)){s.pe='lnk_'+(t=='d'||t=='e'?t:'o');q+='&pe='+s.pe+(h?'&pev1='+s.ape(h):'')+(l?'&pev2='+s.ape(l):'');}else trk=0;if(s.trackInlineStats){if(!p){p=s.pageURL;w=0}t=s.ot(o);i=o.sourceIndex;if(s.gg('objectID')){n=s.gg('objectID');x=1;i=1}if(p&&n&&t)qs='&pid='+s.ape(s.fl(p,255))+(w?'&pidt='+w:'')+'&oid='+s.ape(s.fl(n,100))+(x?'&oidt='+x:'')+'&ot='+s.ape(t)+(i?'&oi='+i:'')}}else trk=0}if(trk||qs){s.sampled=s.vs(sed);if(trk){if(s.sampled)code=s.mr(sess,(vt?'&t='+s.ape(vt):'')+s.hav()+q+(qs?qs:s.rq()),0,ta);qs='';s.m_m('t');if(s.p_r)s.p_r();s.referrer=s.lightProfileID=s.retrieveLightProfiles=s.deleteLightProfiles=''}s.sq(qs)}}else s.dl(vo);if(vo)s.voa(vb,1);s.lnk=s.eo=s.linkName=s.linkType=s.wd.s_objectID=s.ppu=s.pe=s.pev1=s.pev2=s.pev3='';if(s.pg)s.wd.s_lnk=s.wd.s_eo=s.wd.s_linkName=s.wd.s_linkType='';return code};s.trackLink=s.tl=function(o,t,n,vo){var s=this;s.lnk=s.co(o);s.linkType=t;s.linkName=n;s.t(vo)};s.trackLight=function(p,ss,i,vo){var s=this;s.lightProfileID=p;s.lightStoreForSeconds=ss;s.lightIncrementBy=i;s.t(vo)};s.setTagContainer=function(n){var s=this,l=s.wd.s_c_il,i,t,x,y;s.tcn=n;if(l)for(i=0;i<l.length;i++){t=l[i];if(t&&t._c=='s_l'&&t.tagContainerName==n){s.voa(t);if(t.lmq)for(i=0;i<t.lmq.length;i++){x=t.lmq[i];y='m_'+x.n;if(!s[y]&&!s[y+'_c']){s[y]=t[y];s[y+'_c']=t[y+'_c']}s.loadModule(x.n,x.u,x.d)}if(t.ml)for(x in t.ml)if(s[x]){y=s[x];x=t.ml[x];for(i in x)if(!Object.prototype[i]){if(typeof(x[i])!='function'||(''+x[i]).indexOf('s_c_il')<0)y[i]=x[i]}}if(t.mmq)for(i=0;i<t.mmq.length;i++){x=t.mmq[i];if(s[x.m]){y=s[x.m];if(y[x.f]&&typeof(y[x.f])=='function'){if(x.a)y[x.f].apply(y,x.a);else y[x.f].apply(y)}}}if(t.tq)for(i=0;i<t.tq.length;i++)s.t(t.tq[i]);t.s=s;return}}};s.wd=window;s.ssl=(s.wd.location.protocol.toLowerCase().indexOf('https')>=0);s.d=document;s.b=s.d.body;if(s.d.getElementsByTagName){s.h=s.d.getElementsByTagName('HEAD');if(s.h)s.h=s.h[0]}s.n=navigator;s.u=s.n.userAgent;s.ns6=s.u.indexOf('Netscape6/');var apn=s.n.appName,v=s.n.appVersion,ie=v.indexOf('MSIE '),o=s.u.indexOf('Opera '),i;if(v.indexOf('Opera')>=0||o>0)apn='Opera';s.isie=(apn=='Microsoft Internet Explorer');s.isns=(apn=='Netscape');s.isopera=(apn=='Opera');s.ismac=(s.u.indexOf('Mac')>=0);if(o>0)s.apv=parseFloat(s.u.substring(o+6));else if(ie>0){s.apv=parseInt(i=v.substring(ie+5));if(s.apv>3)s.apv=parseFloat(i)}else if(s.ns6>0)s.apv=parseFloat(s.u.substring(s.ns6+10));else s.apv=parseFloat(v);s.em=0;if(s.em.toPrecision)s.em=3;else if(String.fromCharCode){i=escape(String.fromCharCode(256)).toUpperCase();s.em=(i=='%C4%80'?2:(i=='%U0100'?1:0))}if(s.oun)s.sa(s.oun);s.sa(un);s.vl_l='dynamicVariablePrefix,visitorID,vmk,visitorMigrationKey,visitorMigrationServer,visitorMigrationServerSecure,ppu,charSet,visitorNamespace,cookieDomainPeriods,cookieLifetime,pageName,pageURL,referrer,currencyCode';s.va_l=s.sp(s.vl_l,',');s.vl_mr=s.vl_m='charSet,visitorNamespace,cookieDomainPeriods,cookieLifetime,contextData,lightProfileID,lightStoreForSeconds,lightIncrementBy';s.vl_t=s.vl_l+',variableProvider,channel,server,pageType,transactionID,purchaseID,campaign,state,zip,events,events2,products,linkName,linkType,contextData,lightProfileID,lightStoreForSeconds,lightIncrementBy,retrieveLightProfiles,deleteLightProfiles,retrieveLightData';var n;for(n=1;n<=75;n++){s.vl_t+=',prop'+n+',eVar'+n;s.vl_m+=',prop'+n+',eVar'+n}for(n=1;n<=5;n++)s.vl_t+=',hier'+n;for(n=1;n<=3;n++)s.vl_t+=',list'+n;s.va_m=s.sp(s.vl_m,',');s.vl_l2=',tnt,pe,pev1,pev2,pev3,resolution,colorDepth,javascriptVersion,javaEnabled,cookiesEnabled,browserWidth,browserHeight,connectionType,homepage,plugins';s.vl_t+=s.vl_l2;s.va_t=s.sp(s.vl_t,',');s.vl_g=s.vl_t+',trackingServer,trackingServerSecure,trackingServerBase,fpCookieDomainPeriods,disableBufferedRequests,mobile,visitorSampling,visitorSamplingGroup,dynamicAccountSelection,dynamicAccountList,dynamicAccountMatch,trackDownloadLinks,trackExternalLinks,trackInlineStats,linkLeaveQueryString,linkDownloadFileTypes,linkExternalFilters,linkInternalFilters,linkTrackVars,linkTrackEvents,linkNames,lnk,eo,lightTrackVars,_1_referrer,un';s.va_g=s.sp(s.vl_g,',');s.pg=pg;s.gl(s.vl_g);s.contextData=new Object;s.retrieveLightData=new Object;if(!ss)s.wds();if(pg){s.wd.s_co=function(o){s_gi(\"_\",1,1).co(o)};s.wd.s_gs=function(un){s_gi(un,1,1).t()};s.wd.s_dc=function(un){s_gi(un,1).t()}}",y=window,f=y.s_c_il,b=navigator,A=b.userAgent,z=b.appVersion,p=z.indexOf("MSIE "),d=A.indexOf("Netscape6/"),t,h,g,r,B;if(k){k=k.toLowerCase();if(f){for(g=0;g<2;g++){for(h=0;h<f.length;h++){B=f[h];r=B._c;if((!r||r=="s_c"||(g>0&&r=="s_l"))&&(B.oun==k||(B.fs&&B.sa&&B.fs(B.oun,k)))){if(B.sa){B.sa(k)}if(r=="s_c"){return B}}else{B=0}}}}}y.s_an="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";y.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.substring(i,j<0?x.length:j);i=j;if(i>=0)i+=d.length}}return a");y.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");y.s_rep=new Function("x","o","n","return s_jn(s_sp(x,o),n)");y.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");y.s_fe=new Function("c","return s_rep(s_rep(s_rep(c,'\\\\','\\\\\\\\'),'\"','\\\\\"'),\"\\n\",\"\\\\n\")");y.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");y.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){if(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;");q=s_d(q);if(p>0){t=parseInt(h=z.substring(p+5));if(t>3){t=parseFloat(h)}}else{if(d>0){t=parseFloat(A.substring(d+10))}else{t=parseFloat(z)}}if(t<5||z.indexOf("Opera")>=0||A.indexOf("Opera")>=0){q=s_ft(q)}if(!B){B=new Object;if(!y.s_c_in){y.s_c_il=new Array;y.s_c_in=0}B._il=y.s_c_il;B._in=y.s_c_in;B._il[B._in]=B;y.s_c_in++}B._c="s_c";(new Function("s","un","pg","ss",q))(B,k,o,C);return B}function s_giqf(){var a=window,e=a.s_giq,c,b,d;if(e){for(c=0;c<e.length;c++){b=e[c];d=s_gi(b.oun);d.sa(b.un);d.setTagContainer(b.tagContainerName)}}a.s_giq=0}s_giqf();if(Page.isTrackedOnLoad()){s.t()};
