(function(){var FocusOn={};QuirksModeCookie={Create:function(name,value,days){if(days){var date=new Date();date.setTime(date.getTime()+(days*24*60*60*1000));var expires="; expires="+date.toGMTString()}else{var expires=""}document.cookie=name+"="+value+expires+"; path=/"},Read:function(name){var nameEQ=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(nameEQ)==0){return c.substring(nameEQ.length,c.length)}}return null},Erase:function(name){QuirksModeCookie.Create(name,"",-1)}};SessionStorage={Set:function(key,data){try{var string=JSON.stringify({context:"global",value:data});if(string.length>0){sessionStorage.setItem(key,string)}}catch(err){}},SetForThisPage:function(key,data){try{var string=JSON.stringify({context:location.href,value:data});if(string.length>0){sessionStorage.setItem(key,string)}}catch(err){}},Get:function(key){try{var item=sessionStorage.getItem(key);if(item==null){return null}var parsedItem=JSON.parse(item);if(parsedItem.context==null||parsedItem.context=="undefined"){return null}if(parsedItem.context!="global"&&parsedItem.context!=location.href){sessionStorage.removeItem(key);return null}return parsedItem.value}catch(err){return null}},Clear:function(){sessionStorage.clear()}};OptionsHelper={Extend:function(defaultOptions,providedOptions){if(providedOptions==null){return defaultOptions}for(var index in defaultOptions){if(defaultOptions.hasOwnProperty(index)&&typeof providedOptions[index]=="undefined"){providedOptions[index]=defaultOptions[index]}}return providedOptions}};LocalStorage={Set:function(key,data){try{var string=JSON.stringify({context:"global",value:data});if(string.length>0){localStorage.setItem(key,string)}}catch(err){}},SetForThisPage:function(key,data){try{var string=JSON.stringify({context:location.href,value:data});if(string.length>0){localStorage.setItem(key,string)}}catch(err){}},Get:function(key){try{var item=localStorage.getItem(key);if(item==null){return null}var parsedItem=JSON.parse(item);if(parsedItem.context==null||parsedItem.context=="undefined"){return null}if(parsedItem.context!="global"&&parsedItem.context!=location.href){localStorage.removeItem(key);return null}return parsedItem.value}catch(err){return null}},Clear:function(){localStorage.clear()}};RequestTunneler={Options:{Tunneler:"http://focusonqa.keylimetie.com/Tunnel/?",URL:"",Method:"GET",Data:"",Headers:"",Type:"",Callback:"",ID:"",ErrorCallback:"RequestTunneler.DefaultErrorHandler"},Call:function(options){var settings=OptionsHelper.Extend(RequestTunneler.Options,options||{});var src=settings.Tunneler;src=src+"URL="+escape(settings.URL.split("%").join("%25"));src=src+"&ID="+escape(settings.ID);src=src+"&Method="+escape(settings.Method);src=src+"&Type="+escape(settings.Type);src=src+"&Callback="+escape(settings.Callback);src=src+"&ErrorCallback="+escape(settings.ErrorCallback);if(settings.Data.length>0){src=src+"&Data="+escape(settings.Data)}if(settings.Headers.length>0){src=src+"&Headers="+escape(settings.Headers)}var jssrc=document.createElement("script");jssrc.setAttribute("type","text/javascript");jssrc.setAttribute("async",true);jssrc.setAttribute("src",src);(document.getElementsByTagName("head")[0]||document.getElementsByTagName("body")[0]).appendChild(jssrc)},DefaultErrorHandler:function(data){var response="The RequestTunneler had a problem: "+data;(window.console&&console.log(response))||function(){(document.getElementsByTagName("body")[0]).appendChild("Error Encountered: "+response)}}};XmlDoc={Get:function(response){var xmlDoc;if(window.DOMParser){parser=new DOMParser();xmlDoc=parser.parseFromString(response,"text/xml")}else{xmlDoc=new ActiveXObject("Microsoft.XMLDOM");xmlDoc.async="false";xmlDoc.loadXML(response)}return xmlDoc},SerializeToString:function(xmlElement){if(this.__xmlSerializer==null){this.__xmlSerializer=new XMLSerializer()}return this.__xmlSerializer.serializeToString(xmlElement)},__xmlSerializer:null,ReplaceValue:function(xmlString,node,value){var regex=new RegExp("(<"+node+"[^>]*>)[^<]*(<)","g");var match=regex.exec(xmlString);if(match==null){return xmlString}var result=xmlString.replace(regex,"$1"+value+"$2");return result}};String.prototype.ucFirst=function(){return this.substr(0,1).toUpperCase()+this.substr(1,this.length)};var dateFormat=function(){var token=/d{1,4}|m{1,4}|yy(?:yy)?|([HhMsTt])\1?|[LloSZ]|"[^"]*"|'[^']*'/g,timezone=/\b(?:[PMCEA][SDP]T|(?:Pacific|Mountain|Central|Eastern|Atlantic) (?:Standard|Daylight|Prevailing) Time|(?:GMT|UTC)(?:[-+]\d{4})?)\b/g,timezoneClip=/[^-+\dA-Z]/g,pad=function(val,len){val=String(val);len=len||2;while(val.length<len){val="0"+val}return val};return function(date,mask,utc){var dF=dateFormat;if(arguments.length==1&&Object.prototype.toString.call(date)=="[object String]"&&!/\d/.test(date)){mask=date;date=undefined}date=date?new Date(date):new Date;if(isNaN(date)){throw SyntaxError("invalid date")}mask=String(dF.masks[mask]||mask||dF.masks["default"]);if(mask.slice(0,4)=="UTC:"){mask=mask.slice(4);utc=true}var _=utc?"getUTC":"get",d=date[_+"Date"](),D=date[_+"Day"](),m=date[_+"Month"](),y=date[_+"FullYear"](),H=date[_+"Hours"](),M=date[_+"Minutes"](),s=date[_+"Seconds"](),L=date[_+"Milliseconds"](),o=utc?0:date.getTimezoneOffset(),flags={d:d,dd:pad(d),ddd:dF.i18n.dayNames[D],dddd:dF.i18n.dayNames[D+7],m:m+1,mm:pad(m+1),mmm:dF.i18n.monthNames[m],mmmm:dF.i18n.monthNames[m+12],yy:String(y).slice(2),yyyy:y,h:H%12||12,hh:pad(H%12||12),H:H,HH:pad(H),M:M,MM:pad(M),s:s,ss:pad(s),l:pad(L,3),L:pad(L>99?Math.round(L/10):L),t:H<12?"a":"p",tt:H<12?"am":"pm",T:H<12?"A":"P",TT:H<12?"AM":"PM",Z:utc?"UTC":(String(date).match(timezone)||[""]).pop().replace(timezoneClip,""),o:(o>0?"-":"+")+pad(Math.floor(Math.abs(o)/60)*100+Math.abs(o)%60,4),S:["th","st","nd","rd"][d%10>3?0:(d%100-d%10!=10)*d%10]};return mask.replace(token,function($0){return $0 in flags?flags[$0]:$0.slice(1,$0.length-1)})}}();dateFormat.masks={"default":"ddd mmm dd yyyy HH:MM:ss",shortDate:"m/d/yy",mediumDate:"mmm d, yyyy",longDate:"mmmm d, yyyy",fullDate:"dddd, mmmm d, yyyy",shortTime:"h:MM TT",mediumTime:"h:MM:ss TT",longTime:"h:MM:ss TT Z",isoDate:"yyyy-mm-dd",isoTime:"HH:MM:ss",isoDateTime:"yyyy-mm-dd'T'HH:MM:ss",isoUtcDateTime:"UTC:yyyy-mm-dd'T'HH:MM:ss'Z'"};dateFormat.i18n={dayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat","Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec","January","February","March","April","May","June","July","August","September","October","November","December"]};Date.prototype.format=function(mask,utc){return dateFormat(this,mask,utc)};String.prototype.trim=function(){return(this.replace(/^[\s\xA0]+/,"").replace(/[\s\xA0]+$/,""))};String.prototype.startsWith=function(str){return(this.match("^"+str)==str)};String.prototype.endsWith=function(str){return(this.match(str+"$")==str)};String.prototype.pad=function(l,s){return(l-=this.length)>0?(s=new Array(Math.ceil(l/s.length)+1).join(s)).substr(0,s.length)+this+s.substr(0,l-s.length):this};function getUrlParam(name){name=name.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var regexS="[\\?&]"+name+"=([^&#]*)";var regex=new RegExp(regexS);var results=regex.exec(window.location.href);if(results==null){return null}else{return results[1]}}FocusOn.AppendScript=function(src){var jssrc=document.createElement("script");jssrc.setAttribute("type","text/javascript");jssrc.setAttribute("async",true);jssrc.setAttribute("src",src);(document.getElementsByTagName("head")[0]||document.getElementsByTagName("body")[0]).appendChild(jssrc)};FocusOn.LoadScript=function(src,callback){var head=document.getElementsByTagName("head")[0]||document.documentElement;var script=document.createElement("script");script.setAttribute("type","text/javascript");script.setAttribute("async",true);script.setAttribute("src",src);var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){done=true;callback();script.onload=script.onreadystatechange=null;if(head&&script.parentNode){head.removeChild(script)}}};head.insertBefore(script,head.firstChild)};FocusOn.AppendCss=function(src){var csssrc=document.createElement("link");csssrc.setAttribute("rel","stylesheet");csssrc.setAttribute("type","text/css");csssrc.setAttribute("href",src);(document.getElementsByTagName("head")[0]||document.getElementsByTagName("body")[0]).appendChild(csssrc)};FocusOn.AppendImg=function(){var csssrc=document.createElement("img");csssrc.setAttribute("src","/favicon.ico");csssrc.setAttribute("style","display:none;");document.getElementsByTagName("body")[0].appendChild(csssrc)};FocusOn.__alreadyInitialized=false;FocusOn.Initialized=function(){return FocusOn.__alreadyInitialized};FocusOn.__readyToInitialize=false;FocusOn.ReadyToInitialize=function(){return FocusOn.__readyToInitialize};FocusOn.Options={AutoShowLastDialog:true,AllowLogin:false,ID:"",InjectAnalytics:true};FocusOn.Initialize=function(options){var me=this;function WaitUntilReady(){if(!me.__readyToInitialize){setTimeout(arguments.callee,200)}else{me.Initialize(options)}}if(!this.__readyToInitialize){return WaitUntilReady()}if(this.__alreadyInitialized){return}me.Options=OptionsHelper.Extend(me.Options,options||{});me.AppendImg();me.Data.Initialize();me.Data.CallService("GetAccount",{Callback:"FocusOn.Google.__handleGetAccountRequest"});me.LoadScript(document.location.protocol+"//www.google.com/jsapi",function(){me.Google.Initialize(me.__initializeStepTwo)});me.__alreadyInitialized=true};FocusOn.__initializeStepTwo=function(){google.gdata.onLoad();if(window.location.hash&&window.location.hash.startsWith("#FocusOnTrigger:")){eval(window.location.hash.substring(16)+"();")}else{FocusOn.__proceedWithAuthorization()}};FocusOn.LoadFromBookmark=function(options){if(this.Initialized()){this.Options=OptionsHelper.Extend(this.Options,options||{});this.__proceedWithAuthorization()}else{this.Initialize(options)}return true};FocusOn.__proceedWithAuthorization=function(){FocusOn.Data.CallService("CheckSignIn",{Callback:"FocusOn.__checkSignInCallback"},false)};FocusOn.__checkSignInCallback=function(isSignedIn){if(isSignedIn){FocusOn.__loadJQuery(function(){if(FocusOn.Google.CheckLogin()==false){FocusOn.UI.ShowGoogleSignIn()}else{FocusOn.Google.InitializeFull(function(){if(!FocusOn.Google.Analytics.HasAccount()||!FocusOn.Google.Analytics.HasAccessToCurrentDomain()||!FocusOn.Google.WebmasterTools.HasAccount()||!FocusOn.Google.WebmasterTools.HasAddedCurrentDomain()||!FocusOn.Google.WebmasterTools.HasVerifiedAccessToCurrentDomain()){var me=FocusOn.UI;me.__loadUIScripts(function(){FocusOn.Data.RecycleCache();me.SetFullyCollapsedExpandAction(me.GoogleRegistration,me.GoogleRegistration.Show);me.GoogleRegistration.Show()})}else{FocusOn.Google.SyncAnalyticsWithServer();FocusOn.UI.ShowInitialDialog()}})}})}else{if(FocusOn.Options.AllowLogin){FocusOn.__loadJQuery(function(){FocusOn.Data.RecycleCache();FocusOn.UI.ShowFocusOnSignIn()})}}};FocusOn.JQuery=null;FocusOn.__loadJQuery=function(callback){var jQuery=null;if(window.jQuery!==undefined){jQuery=window.jQuery;var version=jQuery&&jQuery.fn&&jQuery.fn.jquery;if(version=="1.4.2"){FocusOn.JQuery=jQuery;callback&&callback();return}}FocusOn.LoadScript(document.location.protocol+"//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js",function(){FocusOn.JQuery=window.jQuery;if(jQuery!==null){window.jQuery=jQuery}callback&&callback()})};FocusOn.Data={Initialize:function(){FocusOn.Data.SetSource("PageRank",FocusOn.Data.__getCurrentPageRank)},Events:{CommonEvents:{UIFullyLoaded:"UIFullyLoaded",AnalyticsDateRangeChanged:"AnalyticsDateRangeChanged"},__listeners:[],Listen:function(event,callback){this.__listeners[event]=this.__listeners[event]||[];if(typeof callback!=="function"){return}this.__listeners[event].push(callback)},Mute:function(event,callback){this.__listeners[event]=this.__listeners[event]||[];if(typeof callback!=="function"){return}var listeners=this.__listeners[event];for(var i=0;i<listeners.length;i++){if(listeners[i]==callback){this.__listeners[event].splice(i,i);return}}},Speak:function(event,data){this.__listeners[event]=this.__listeners[event]||[];var listeners=this.__listeners[event];for(var i=0;i<listeners.length;i++){listeners[i]&&listeners[i](data)}}},_getCache:[],_getCallback:[],_sources:[],RecycleCache:function(key){if(key===null){FocusOn.Data._getCache=[];SessionStorage.Clear();LocalStorage.Clear()}else{FocusOn.Data._getCache[key]=null;SessionStorage.Set(key,null)}},Get:function(key,callback,errorCallback){if(FocusOn.Data._sources[key]==null){return}var fromCache=FocusOn.Data.GetFromCache(key);if(fromCache!=null){callback(fromCache);return}if(FocusOn.Data._getCallback[key]==null){FocusOn.Data._getCallback[key]=[]}FocusOn.Data._getCallback[key].push(callback);FocusOn.Data._sources[key](errorCallback)},GetFromCache:function(key){var data=FocusOn.Data._getCache[key];if(data==null){data=SessionStorage.Get(key)}return data},SetInCache:function(key,data){SessionStorage.Set(key,data);FocusOn.Data._getCache[key]=data},SetInCacheForThisPage:function(key,data){SessionStorage.SetForThisPage(key,data);FocusOn.Data._getCache[key]=data},SetSource:function(key,callback){FocusOn.Data._sources[key]=callback},Set:function(key,value){FocusOn.Data.SetInCache(key,value);if(FocusOn.Data._getCallback[key]==null){return}while(FocusOn.Data._getCallback[key].length>0){(FocusOn.Data._getCallback[key].pop())(value)}},GetCurrentURL:function(){var fromCache=this.GetFromCache("GetCurrentURL");if(fromCache!=null){return fromCache}var url=location.href;var cleanPageURL;if(url.substring(0,5)=="https"){cleanPageURL=url.substring(8)}else{cleanPageURL=url.substring(7)}var hashIndex=cleanPageURL.indexOf("#");var slashIndex=cleanPageURL.indexOf("/");if(hashIndex!=-1){cleanPageURL=cleanPageURL.substring(slashIndex,hashIndex)}else{cleanPageURL=cleanPageURL.substring(slashIndex)}this.SetInCacheForThisPage("GetCurrentURL",cleanPageURL);return cleanPageURL},GetCurrentURLEscaped:function(){return escape(FocusOn.Data.GetCurrentURL())},GetCurrentDomain:function(){var fromCache=this.GetFromCache("GetCurrentDomain");if(fromCache!=null){return fromCache}var url=location.href;var cleanDomain;if(url.substring(0,5)=="https"){cleanDomain=url.substring(8)}else{cleanDomain=url.substring(7)}var slashIndex=cleanDomain.indexOf("/");if(slashIndex!=-1){cleanDomain=cleanDomain.substring(0,slashIndex)}cleanDomain="www."+cleanDomain;if(cleanDomain.substring(0,4)=="www."){cleanDomain=cleanDomain.substring(4)}this.SetInCache("GetCurrentDomain",cleanDomain);return cleanDomain},GetCurrentDomainEscaped:function(){return escape(FocusOn.Data.GetCurrentDomain())},__callServiceCallbackCount:0,__callServiceCallbacks:{},CallService:function(service,options,cache,enforceSSL){if(!service){return}cache=typeof cache=="undefined"?true:cache;options=OptionsHelper.Extend({ID:FocusOn.Options.ID,Domain:FocusOn.Data.GetCurrentDomain(),Callback:"",ErrorCallback:"FocusOn.UI.ErrorHandler"},options||{});if(cache){var fromCache=FocusOn.Data.GetFromCache(options.Callback);if(fromCache!=null){eval(options.Callback+"(fromCache);");return}}FocusOn.Data.__callServiceCallbackCount+=1;var intermediaryCallback="FocusOn.Data.__callServiceCallbacks.temp"+FocusOn.Data.__callServiceCallbackCount;var finalCallback=options.Callback;if(cache){eval(intermediaryCallback+' = function (data) {FocusOn.Data.SetInCache("'+finalCallback+'", data);'+finalCallback+"(data); "+intermediaryCallback+" = null;};")}else{eval(intermediaryCallback+" = function (data) {"+finalCallback+"(data); "+intermediaryCallback+" = null;};")}options.Callback=intermediaryCallback;var src="http://focusonqa.keylimetie.com/Services/"+service+"?";if(enforceSSL){src=src.split("http:").join("https:")}var first=true;for(var option in options){if(options.hasOwnProperty(option)){if(first){src+=option+"="+escape(options[option]);first=false}else{src+="&"+option+"="+escape(options[option])}}}FocusOn.AppendScript(src)},__getCurrentPageRank:function(){var src="http://focusonqa.keylimetie.com/Services/GetPageRank?";src+="Callback=FocusOn.Data.__completeGetCurrentPageRank";src+="&ErrorCallback=FocusOn.UI.ErrorHandler";src+="&ID="+escape(FocusOn.Options.ID);src+="&URL="+escape(location.href);FocusOn.AppendScript(src)},__completeGetCurrentPageRank:function(response){FocusOn.Data.Set("PageRank",response.Result)}};FocusOn.Google={Initialize:function(callback){google.load("gdata","1.x",{packages:["analytics"],callback:callback});FocusOn.Data.SetSource("Google.UserInformation",FocusOn.Google.__loadUserInformation)},__alreadyInitializedFull:false,InitializeFull:function(callback){if(!FocusOn.Google.__alreadyInitializedFull){FocusOn.LoadScript("http://focusonqa.keylimetie.com/d/"+FocusOn.Options.ID+"/Google.min.js",function(){google.load("visualization","1",{packages:["table","columnchart","piechart","geomap","gauge"],callback:FocusOn.Google.Charts.__visualizationsInitialized});FocusOn.Google.AnalyticsService=new google.gdata.analytics.AnalyticsService("KeyLimeTie_FocusOn_v0.9");FocusOn.Google.__initializeFull(callback)})}else{callback()}FocusOn.Google.__alreadyInitializedFull=true},AnalyticsKey:null,AnalyticsTableId:null,__scope:"https://www.google.com/analytics/feeds https://www.google.com/webmasters/tools/feeds",AnalyticsService:null,Login:function(){google.accounts.user.login(FocusOn.Google.__scope)},CheckLogin:function(){var token=google.accounts.user.checkLogin(FocusOn.Google.__scope);return token.length>0},GetToken:function(){return google.accounts.user.checkLogin(FocusOn.Google.__scope)},Logout:function(){google.accounts.user.checkLogin(FocusOn.Google.__scope);google.accounts.user.logout(function(){window.location.reload()})},__loadUserInformation:function(){return google.accounts.user.getInfo(FocusOn.Google.__getInfoCallback)},__getInfoCallback:function(data){FocusOn.Data.Set("Google.UserInformation",data)},__alreadyInjectedAnalytics:false,InjectAnalytics:function(){if(FocusOn.Google.__alreadyInjectedAnalytics||!FocusOn.Options.InjectAnalytics){return}var _gaq=(window&&window._gaq)||[];_gaq.push(["_setAccount",FocusOn.Google.AnalyticsKey]);_gaq.push(["_trackPageview"]);window._gaq=_gaq;var ga=document.createElement("script");ga.type="text/javascript";ga.async=true;ga.src=("https:"==document.location.protocol?"https://ssl":"http://www")+".google-analytics.com/ga.js";(document.getElementsByTagName("head")[0]||document.getElementsByTagName("body")[0]).appendChild(ga);FocusOn.Google.__alreadyInjectedAnalytics=true},__handleGetAccountRequest:function(response){if(typeof(response)!=="undefined"&&response.Valid===true){FocusOn.Google.AnalyticsKey=response.AnalyticsKey;FocusOn.Google.AnalyticsTableId=response.AnalyticsTableId;FocusOn.Google.InjectAnalytics()}},__logUserInteractionInitialized:false,LogUserInteraction:function(category,action,opt_label,opt_value){var _gaq=(window&&window._gaq)||[];if(!this.__logUserInteractionInitialized){_gaq.push(["fo._setAccount","UA-17688673-5"]);window._gaq=_gaq;if(!this.__alreadyInjectedAnalytics&&FocusOn.Options.InjectAnalytics){var ga=document.createElement("script");ga.type="text/javascript";ga.async=true;ga.src=("https:"==document.location.protocol?"https://ssl":"http://www")+".google-analytics.com/ga.js";(document.getElementsByTagName("head")[0]||document.getElementsByTagName("body")[0]).appendChild(ga);this.__alreadyInjectedAnalytics=true}this.__logUserInteractionInitialized=true}_gaq.push(["fo._trackEvent"].concat(arguments));window._gaq=_gaq}};FocusOn.UI={Initialize:function(callback){if(!FocusOn.UI.__alreadyInitializedFull){FocusOn.Google.LogUserInteraction("Widget","Initialized Full");FocusOn.AppendCss("http://focusonqa.keylimetie.com/d/"+FocusOn.Options.ID+"/Widget.min.css","css");FocusOn.LoadScript("http://focusonqa.keylimetie.com/d/"+FocusOn.Options.ID+"/UI.min.js",function(){FocusOn.UI.__initializeFull();callback()})}else{callback()}FocusOn.UI.__alreadyInitializedFull=true},ErrorHandler:function(response){FocusOn.Google.LogUserInteraction("Widget","Error Encountered",response);if(typeof FocusOn.UI.Error!="undefined"){FocusOn.UI.Error.Show(response);return}(window.console&&console.log(response))||function(){(document.getElementsByTagName("body")[0]).appendChild("Error Encountered: "+response)}},ShowInitialDialog:function(){FocusOn.Data.CallService("CheckSignIn",{Callback:"FocusOn.UI.__checkSignInCallback"},false)},__alreadyInitializedFull:false,__alreadyLoadedUIScripts:false,__loadUIScripts:function(callback){if(this.__alreadyLoadedUIScripts){callback&&callback()}else{this.__alreadyLoadedUIScripts=true;var backupJQuery=null;if(backupJQuery!==undefined){backupJQuery=window.jQuery}window.jQuery=FocusOn.JQuery;FocusOn.LoadScript(document.location.protocol+"//ajax.googleapis.com/ajax/libs/jqueryui/1.8.1/jquery-ui.min.js",function(){if(backupJQuery!==null){window.jQuery=backupJQuery}FocusOn.UI.Initialize(function(){callback&&callback()})})}},ShowFocusOnSignIn:function(){var me=this;me.__loadUIScripts(function(){me.SetFullyCollapsedExpandAction(me.SignInRequest,me.SignInRequest.Show);me.SignInRequest.Show()})},ShowGoogleSignIn:function(){var me=this;me.__loadUIScripts(function(){me.SetFullyCollapsedExpandAction(me.GoogleSignInRequest,me.GoogleSignInRequest.Show);var lastShown=QuirksModeCookie.Read("FocusOn-LastShownSignInDialog");switch(lastShown){case me.FullyCollapsed.Identifier:me.FullyCollapsed.Show();break;default:me.GoogleSignInRequest.Show();break}})},ShowInitialDialog:function(){var me=this;me.__loadUIScripts(function(){me.SetFullyCollapsedExpandAction(me.HeadsUp,me.HeadsUp.Show);if(FocusOn.Options.AutoShowLastDialog){var lastShown=QuirksModeCookie.Read("FocusOn-LastShownDialog");switch(lastShown){case me.FullWindow.Identifier:me.FullWindow.Show();break;case me.FullyCollapsed.Identifier:me.FullyCollapsed.Show();break;default:me.HeadsUp.Show();break}}})}};FocusOn.__readyToInitialize=true;if(typeof window.FocusOn=="undefined"){window.FocusOn=FocusOn}})();
