tagged.namespace("util.lightbox");tagged.util.lightbox={maskId:"lbMask",lightboxId:"lbContent",elIDs:["ad_unit_0_div","ad_unit_1_div","ad_unit_2_div","comment_rte"],show:function(d,h){for(var g=0;g<this.elIDs.length;g++){if(D.get(this.elIDs[g])){D.get(this.elIDs[g]).style.visibility="hidden"}}if(!document.getElementById(this.maskId)){var l=document.createElement("div");l.id=this.maskId;l.style.width=parseInt(D.getViewportWidth())+"px";l.style.height=YAHOO.util.Dom.getDocumentHeight()+"px";document.body.appendChild(l)}if(D.get(this.lightboxId)){document.body.removeChild(D.get(this.lightboxId))}else{if(D.get("captcha_div")){document.body.removeChild(D.get("captcha_div"))}}var a=document.createElement("div");a.id=this.lightboxId;var j=this.getScroll();a.style.top=(j+75)+"px";a.style.left=(parseInt(D.getViewportWidth())-500)/2+"px";var k=document.createElement("div");k.innerHTML='<img src="'+TAGGED.static_uri+'/images/loading_grey32.gif"/>';k.id="lbLoader";a.appendChild(k);document.body.appendChild(a);if(d.constructor==String){var c=document.createElement("div");c.innerHTML=d;c.style.visibility="hidden";c.style.position="absolute"}else{var c=d;c.style.visibility="hidden";c.style.position="absolute"}a.appendChild(c);var f=function(){var i=c.offsetWidth+1;var m=c.offsetHeight;if((i>50)||(m>50)){e(c,i,m)}else{setTimeout(f,250)}};var e=function(p,m,v){k.style.display="none";var q=parseInt(D.getStyle(p,"paddingLeft"));var o=parseInt(D.getStyle(p,"paddingRight"));var x=parseInt(D.getStyle(p,"paddingTop"));var n=parseInt(D.getStyle(p,"paddingBottom"));var u=parseInt(D.getViewportWidth());var t=((u-100)-(m+q+o))/2;var i=(v+n);if(YAHOO.util.Anim){var r={left:{to:t},width:{to:m},height:{to:i}};var w=new YAHOO.util.Anim("lbContent",r,0.4);var s=function(){p.style.position="";p.style.visibility="";p.style.display="block";window.setTimeout(function(){tagged.util.domMethods.set_bg_iframe(a)},0);if(h){var y=D.get(h);if(y){y.select()}}};w.onComplete.subscribe(s);w.animate()}else{p.style.left=t+"px";p.style.width=m+"px";p.style.height=v+"px";d.style.position="";d.style.visibility="";d.style.display="block";window.setTimeout(function(){tagged.util.domMethods.set_bg_iframe(a)},0)}};f();var b=new YAHOO.util.KeyListener(document,{keys:27},tagged.util.lightbox.hide);b.enable()},hide:function(){if(!this.maskId){this.maskId="lbMask"}if(!this.lightboxId){this.lightboxId="lbContent"}document.body.removeChild(D.get(this.maskId));document.body.removeChild(D.get(this.lightboxId));for(var a=0;a<this.elIDs.length;a++){if(D.get(this.elIDs[a])){D.get(this.elIDs[a]).style.visibility="visible"}}},getScroll:function(){var a;if(self.pageYOffset){a=self.pageYOffset}else{if(document.documentElement&&document.documentElement.scrollTop){a=document.documentElement.scrollTop}else{if(document.body){a=document.body.scrollTop}}}return a},setScroll:function(){window.scrollTo(0,this.getScroll())}};tagged.namespace("security.captcha");tagged.security.captcha={trigger:function(a,b){if(a.stat!="security"||!a.result){return}this.callObj=b;this.origCallObj=YAHOO.lang.JSON.stringify(a.result.origCallObj);tagged.util.lightbox.show(a.result.captchaHtml,"captcha_code")},submit:function(b){tagged.util.lightbox.hide();var a={method:"tagged.security.submitCaptcha",captchaData:b,origCallObj:this.origCallObj};if(this.callObj){a.callback=this.callObj.callback}TAGGED.api.call(a)}};tagged.namespace("util.dateHandler");tagged.util.dateHandler={dateObjects:[],findAndBind:function(b,c){if(b){var d=D.getElementsByClassName("tag_ts","span",b)}else{var d=D.getElementsByClassName("tag_ts","span")}for(var a in d){var e=d[a];if(e._inited){continue}YAHOO.lang.augmentObject(e,this.dateBinderClass,true);e.init(c);this.dateObjects.push(e)}},updateAll:function(){for(var a in this.dateObjects){this.dateObjects[a].update()}},getRelativeDate:function(b,c,e){var f=new Date();if(isNaN(c)){c=31557600}var a=(f.getTime()-b.getTime())/1000;if(c==0){return this.getLocalDate(b)}if(c<0){return this.computeRelative(a)}if(e&&a>e){a=e}if(c&&(a<c)){return this.computeRelative(a)}else{return this.getLocalDate(b)}},computeRelative:function(c){if(c<5){return this.stringMoments}else{if(c<30){return this.stringHalfMinute}else{if(c<60){return this.stringLessMinute}else{if(c<3600){var f=Math.round(c/60);if(f<=1){return this.stringMinute}else{return sprintf(this.stringMinutes,f)}}else{if(c<86400){var e=Math.round(c/3600);if(e<=1){return this.stringHour}else{return sprintf(this.stringHours,e)}}else{if(c<2629800){var b=Math.round(c/86400);if(b<=1){return this.stringDay}else{return sprintf(this.stringDays,b)}}else{if(c<31557600){var d=Math.round(c/2629800);if(d<=1){return this.stringMonth}else{return sprintf(this.stringMonths,d)}}else{var a=Math.round(c/3155760);if(a<=1){return this.stringYear}else{return sprintf(this.stringYears,a)}}}}}}}}},getLocalDate:function(a){return a.toLocaleString()},dateBinderClass:{init:function(a){if(this._inited){return}if(this.getAttribute("utc")){this._selfDate=new Date;this._selfDate.setTime(this.getAttribute("utc")*1000)}else{this._selfDate=new Date(this.innerHTML)}this.maxRelativeDate=0;if(this.getAttribute("max_relative_date")){this.maxRelativeDate=this.getAttribute("max_relative_date")}if(this.getAttribute("relative")){switch(this.getAttribute("relative")){case"true":case"1":case"on":case"relative":this._isRelative=true;break;default:this._isRelative=false}}else{this._isRelative=true}this._inited=false;if(a){this.update()}},update:function(){if(!this._inited){this.init()}var a=tagged.util.dateHandler.getLocalDate(this._selfDate);if(this._isRelative){this.innerHTML=tagged.util.dateHandler.getRelativeDate(this._selfDate,"relative",this.maxRelativeDate)}else{this.innerHTML=a}if(!this.getAttribute("no_title")){this.setAttribute("title",a)}D.removeClass(this,"hidden")}}};tagged.namespace("util.string");tagged.util.string={quoteRegEx:null,isEmpty:function(a){return(a==null||a.match(/^\s*$/)!=null)},escapeQuotes:function(a){if(!tagged.util.string.quoteRegEx){tagged.util.string.quoteRegEx=new RegExp();tagged.util.string.quoteRegEx.compile("('|\")","g")}return a.replace(tagged.util.string.quoteRegEx,"\\$1")},breakString:function(f,c){if(!f){return""}var f=f.replace(/\n/g," ");var e=f.split(" ");if(navigator.appName=="Netscape"){var g="<wbr/>"}else{var g="&shy;"}for(var d=0;d<e.length;d++){if(e[d].length>c){var b=e[d].length;var h=b/c;var j=new Array;for(var k=0;k<h;k++){var a=e[d].substring(k*c,(k+1)*c)+g;j.push(a)}e[d]=j.join("")}}return(e.join(" "))},tinyMceIsEmpty:function(a){if(!a){return true}return !YAHOO.lang.trim(a.replace(/<p>|<\/p>|<br>|&nbsp;/g,""))},subParams:function(a,b){if((typeof b!="object")||(a==null)){return""}return a.replace(/\%?\{(\w+)\}/g,function(d,c,e){if(typeof(b[c])!="undefined"&&b[c]!=null){return b[c]}})},summary:function(a,b){if(!b||a.length<=b){return a}return a.substring(0,b-3).replace(/\.+$/,"")+"..."}};tagged.namespace("photos.view");tagged.photos.view={prefetchMultiplier:2,prefetchMax:10,delimiter:"_",photoList:[],curPhotoId:0,currPos:-1,streak:0,commentState:{curr:0,total:0},init:function(photoArray,currentPos){var V=tagged.photos.view;V.photoList=eval(photoArray);if(V.photoList.length==0||invalidPhoto){V.disableImages();if(invalidPhoto){alert(V.strings.notHere)}window.location.href="/photo_gallery.html?uid="+photoUserId;return}V.prefetchImages(currentPos,V.prefetchMultiplier);V.prefetchImages(currentPos,-1*V.prefetchMultiplier);var commentInput=document.getElementById("commentInput");if(commentInput){TAGGED.util.hintinput.attach(commentInput,document.forms.commentForm,V.strings.postAComment);commentInput.disabled=false;commentInput.clearValue()}E.addListener("report_photo_link","click",this.reportPhoto,this,true);var defaultPhotoState=currentPos+V.delimiter+"0";var bookmarkedPhotoState=YAHOO.util.History.getBookmarkedState("state");var currPhotoPage=bookmarkedPhotoState||defaultPhotoState;YAHOO.util.History.register("state",currPhotoPage,function(state){var states=state.split(V.delimiter);V.loadState(parseInt(states[0]),parseInt(states[1]))});YAHOO.util.History.onReady(function(){var state=YAHOO.util.History.getCurrentState("state");var states=state.split(V.delimiter);V.loadState(parseInt(states[0]),parseInt(states[1]))});try{YAHOO.util.History.initialize("yui-history-field","yui-history-iframe")}catch(e){alert(e)}},loadState:function(g,c,f){var a=tagged.photos.view;if(a.photoList.length==0){document.getElementById("image_container").style.display="none";document.getElementById("image_comments").style.display="none";document.getElementById("no_images").style.display="block";return}if(g<0||g>=a.photoList.length){alert(a.strings.whoops);return}document.getElementById("quick_comment").style.visibility="hidden";var b=a.photoList[g];if(g!=a.currPos||f){var e=new Image();a.currPos=g;e.id="main_image";e.style.display="none";e.alt=b.caption;e.src=b.path;e.style.width=b.width+"px";e.style.height=b.height+"px";e.style.display="block";var d=document.getElementById("image_container_anchor");if(!d){d=document.getElementById("image_container")}d.replaceChild(e,document.getElementById("main_image"));document.getElementById("caption").innerHTML=tagged.util.string.breakString(b.caption,30);a.loadNavThumbnail(a._decPos(g),"prev_photo");a.loadNavThumbnail(a._incPos(g),"next_photo");a.reportFlagUpdate(g);if(b.caption){document.title=sprintf(a.strings.photoTitle,b.caption)}else{document.title=a.strings.genericTitle}if(e.width<1){YAHOO.util.Event.addListener(e,"load",function(){a.updateProfileButtons(b.photoId,this)})}else{a.updateProfileButtons(b.photoId,e)}a.prefetchImages(g,a.prefetchMultiplier*a.streak);document.getElementById("user_comment_list").innerHTML=""}a.enableImages();a.fetchComments(photoUserId,b.photoId,c*numCommentsPerPage)},loadNavThumbnail:function(c,b){var a=YAHOO.util.Dom.get(b);if(a){a.src=tagged.photos.view.photoList[c].thumbPath}},updateProfileButtons:function(a,e){if(photoUserId!=userId){return}var b=document.getElementById("profile_action_stamp");var c=(a==primaryPhotoId);if(b){b.style.display=(c)?"none":"block";if(c){YAHOO.util.Dom.addClass(e,"user_profile_picture")}else{YAHOO.util.Dom.removeClass(e,"user_profile_picture")}}var d=document.getElementById("picture_actions");if(d){d.style.right=(730-e.width)/2+"px";d.style.display="block"}},reportFlagUpdate:function(a){this.curPhotoId=tagged.photos.view.photoList[a].photoId;D.removeClass("report_photo_link","hide_me");D.addClass("report_photo_status","hide_me")},reportPhoto:function(c,a){E.preventDefault(c);var b={method:"tagged.photo.reportPhoto",uid:photoUserId,photo_id:this.curPhotoId,callback:"tagged.photos.view.reportPhotoResponse"};TAGGED.api.call(b)},reportPhotoResponse:function(a){if(a.stat=="ok"){tagged.ads.reload();D.addClass("report_photo_link","hide_me");D.removeClass("report_photo_status","hide_me")}},makeProfilePhoto:function(){if(confirm(tagged.photos.view.strings.confirmProfile)){tagged.photos.view.disableActions();var a={method:"tagged.photo.setPrimary",callback:"tagged.photos.view.profilePhotoSet",photo_id:tagged.photos.view.photoList[tagged.photos.view.currPos].photoId};TAGGED.api.call(a)}return false},profilePhotoSet:function(a){tagged.photos.view.enableActions();if(a.stat=="ok"&&a.result.ERROR_FLAG=="0"){primaryPhotoId=tagged.photos.view.photoList[tagged.photos.view.currPos].photoId;tagged.photos.view.updateProfileButtons(primaryPhotoId,document.getElementById("main_image"))}},deletePhoto:function(){if(confirm(tagged.photos.view.strings.confirmDeletePhoto)){tagged.photos.view.disableActions();var a={method:"tagged.photo.delete",callback:"tagged.photos.view.photoDeleted",photo_id:tagged.photos.view.photoList[tagged.photos.view.currPos].photoId};TAGGED.api.call(a)}return false},photoDeleted:function(a){tagged.photos.view.enableActions();if(a.stat=="ok"){tagged.photos.view.photoList.splice(tagged.photos.view.currPos,1);if(tagged.photos.view.photoList.length==0){tagged.photos.view.disableImages();window.location.href="/photo_gallery.html"}else{if(tagged.photos.view.photoList.length==1){tagged.photos.view.loadState(0,0,true)}else{var b=tagged.photos.view._decPos(tagged.photos.view.currPos);YAHOO.util.History.navigate("state",b+tagged.photos.view.delimiter+"0")}}}},toggleEditCaption:function(a){if(a){document.getElementById("caption").style.display="none";document.getElementById("caption_edit_form").style.display="inline";document.getElementById("caption_edit_link").style.display="none";var b=document.getElementById("caption_edit");b.value=tagged.photos.view.photoList[tagged.photos.view.currPos].caption;b.select();b.focus()}else{document.getElementById("caption").style.display="inline";document.getElementById("caption_edit_form").style.display="none";document.getElementById("caption_edit_link").style.display="inline"}return false},cancelCaption:function(b){var c=b||window.event;if(c){var a=c.explicitOriginalTarget||document.elementFromPoint(c.clientX,c.clientY)}if(a.id!="caption_edit"&&a.id!="caption_save"){tagged.photos.view.toggleEditCaption(false)}},submitCaption:function(a){document.getElementById("caption_edit").disabled=true;document.getElementById("caption_save").disabled=true;var b={method:"tagged.photo.setCaption",callback:"tagged.photos.view.captionSet",photo_id:tagged.photos.view.photoList[tagged.photos.view.currPos].photoId,caption:a};TAGGED.api.call(b);return false},captionSet:function(a){document.getElementById("caption_edit").disabled=false;document.getElementById("caption_save").disabled=false;if(a.stat=="ok"&&a.result.ERROR_FLAG=="0"){tagged.photos.view.toggleEditCaption(false);document.getElementById("caption").innerHTML=a.result.caption;tagged.photos.view.photoList[tagged.photos.view.currPos].caption=a.result.caption}else{if(a.result&&a.result.error_code){alert(this.strings[a.result.error_code])}}},prefetchImages:function(g,d){var b=tagged.photos.view;var f=g;for(var e=0;e<Math.min(b.prefetchMax,Math.abs(d));++e){f=(d>0)?b._incPos(f):b._decPos(f);var c=new Image();var a=new Image();c.src=b.photoList[f].thumbPath;a.src=b.photoList[f].path}},prevPhoto:function(){var a=tagged.photos.view;a.streak=Math.min(a.streak,0);--a.streak;tagged.ads.reload();YAHOO.util.History.navigate("state",a._decPos(a.currPos)+a.delimiter+"0");return false},nextPhoto:function(){var a=tagged.photos.view;a.streak=Math.max(a.streak,0);++a.streak;tagged.ads.reload();YAHOO.util.History.navigate("state",a._incPos(a.currPos)+a.delimiter+"0");return false},disableActions:function(){document.getElementById("main_image").style.display="none";document.getElementById("picture_actions").style.display="none";document.getElementById("caption").style.display="none";document.getElementById("caption_edit_link").style.display="none";document.getElementById("profile_saving").style.display="block";document.getElementById("profile_saving").style.height=document.getElementById("main_image").style.height},enableActions:function(){document.getElementById("main_image").style.display="inline";document.getElementById("picture_actions").style.display="inline";document.getElementById("caption").style.display="inline";document.getElementById("caption_edit_link").style.display="inline";document.getElementById("profile_saving").style.display="none"},disableImages:function(){document.getElementById("image_container").style.display="none";var a=document.getElementById("photo_nav");if(a){a.style.display="none"}},enableImages:function(){document.getElementById("image_container").style.display="";var a=document.getElementById("photo_nav");if(a){a.style.display=""}},toggleCommentActions:function(b,a){var d=YAHOO.util.Dom.getElementsByClassName("timestamp","",b)[0];var c=YAHOO.util.Dom.getElementsByClassName("comment_actions","",b)[0];if(a){d.style.display="none";c.style.display="block"}else{d.style.display="block";c.style.display="none"}},fetchComments:function(b,a,d){var c={method:"tagged.photo.getPhotoCommentsRendered",callback:"tagged.photos.view.loadCommentsJSON",uid:b,photo_id:a,offset:d};TAGGED.api.call(c)},submitComment:function(a){a=YAHOO.lang.trim(a);if(!a||a==tagged.photos.view.strings.postAComment){alert(tagged.photos.view.strings.emptyComment)}else{if(a.search(/<[^>]*>/)>=0){alert(tagged.photos.view.strings.noHTML)}else{tagged.photos.view.sendComment({text:a,type:null})}}return false},submitQuickTaggedComment:function(){tagged.photos.view.sendComment({text:null,type:"q"});return false},sendComment:function(a){document.getElementById("commentInput").disabled=true;document.getElementById("postCommentSubmit").disabled=true;document.getElementById("likePhotoBtn").disabled=true;var b={method:"tagged.photo.submitPhotoComment",callback:"tagged.photos.view.commentSubmitted",uid:photoUserId,commenter_id:userId,photo_id:tagged.photos.view.photoList[tagged.photos.view.currPos].photoId,text:a.text,quick_comment_type:a.type};TAGGED.api.call(b)},commentSubmitted:function(a){commentInput=document.getElementById("commentInput");commentInput.disabled=false;document.getElementById("postCommentSubmit").disabled=false;commentInput.clearValue();document.getElementById("postCommentSubmit").focus();if(a.stat=="ok"&&a.results.success){tagged.photos.view.fetchComments(photoUserId,tagged.photos.view.photoList[tagged.photos.view.currPos].photoId,tagged.photos.view.commentState.curr*numCommentsPerPage)}else{if(a.stat=="fail"){alert(a.error.message)}}},deleteComment:function(d,a,c,b){if(b==null){b=tagged.photos.view.strings.confirmDeleteComDefault}if(confirm(b)){var e={method:"tagged.photo.deletePhotoComment",callback:"tagged.photos.view.commentSubmitted",uid:d,photo_id:a,photo_comment_id:c};TAGGED.api.call(e)}return false},markSpamComment:function(i,b,a,c){var f=YAHOO.util.Dom.getElementsByClassName("comment_text","div","comment_"+a);var j=f[0].innerHTML;var e={method:"tagged.photo.markPhotoCommentAsSpam",uid:i,commenter_id:c,photo_comment_id:a,text:j};TAGGED.api.call(e);var g=YAHOO.util.Dom.getElementsByClassName("comment_spam_mark","div","comment_"+a);var d=YAHOO.util.Dom.getElementsByClassName("comment_actions","div","comment_"+a);var h=YAHOO.util.Dom.getElementsByClassName("comment_msg","div","comment_"+a);g[0].style.display="inline";d[0].style.display="none";h[0].onmouseout=h[0].onmouseover=null;if(userId==i&&c!=userId){tagged.photos.view.deleteComment(i,b,a,tagged.photos.view.strings.confirmDeleteCom)}return false},loadCommentPage:function(c){var a=tagged.photos.view;var d=0;var b=Math.floor((a.commentState.total-1)/numCommentsPerPage);if(a._atPageEnds(c)){return false}switch(c){case"first":d=0;break;case"prev":d=Math.max(a.commentState.curr-1,0);break;case"next":d=Math.min(a.commentState.curr+1,b);break;case"last":d=b;break}YAHOO.util.History.navigate("state",a.currPos+a.delimiter+d);return false},loadCommentsJSON:function(b){if(b.stat=="ok"){var a=document.getElementById("user_comment_list");if(b.results.totalComments==0){no_comment_div=document.getElementById("no_comments");if(no_comment_div){no_comment_div.style.display="block"}document.getElementById("user_comments").style.display="none";a.innerHTML=""}else{no_comment_div=document.getElementById("no_comments");if(no_comment_div){no_comment_div.style.display="none"}document.getElementById("user_comments").style.display="block";if(typeof(b.results.commentsHTML)!="undefined"){a.innerHTML=b.results.commentsHTML;tagged.photos.view.commentState.curr=Math.floor(b.results.startNum/numCommentsPerPage);tagged.photos.view.commentState.total=b.results.totalComments}tagged.util.dateHandler.findAndBind("user_comments",true);tagged.photos.view.renderCommentPagination()}document.getElementById("quick_comment").style.visibility=b.results.quick_comment_visibility;if(b.results.quick_comment_visibility!="hidden"){document.getElementById("likePhotoBtn").disabled=b.results.quick_comment_disabled}}},renderCommentPagination:function(){var a=tagged.photos.view.commentState.total;var d=tagged.photos.view.commentState.curr*numCommentsPerPage+1;var c=Math.min(a,d+numCommentsPerPage-1);var g=YAHOO.util.Dom.getElementsByClassName("user_comment_pages","div","user_comments");var b=sprintf(tagged.photos.view.strings.commentsSummary,d,c,a);for(var e in g){g[e].innerHTML=b}var f=YAHOO.util.Dom.getElementsByClassName("user_comment_nav","div","user_comments");for(var e in f){tagged.photos.view._adjustPaginationLinks(f[e])}},_incPos:function(a){if(++a>=tagged.photos.view.photoList.length){a=0}return a},_decPos:function(a){if(--a<0){a=tagged.photos.view.photoList.length-1}return a},_adjustPaginationLinks:function(a){if(tagged.photos.view.commentState.total>numCommentsPerPage){a.style.display="inline";var c=a.getElementsByTagName("a");for(var b in c){if(tagged.photos.view._atPageEnds(c[b].className)){YAHOO.util.Dom.addClass(c[b],"unclickable")}else{YAHOO.util.Dom.removeClass(c[b],"unclickable")}}}else{a.style.display="none"}},_atPageEnds:function(a){var b=Math.floor((tagged.photos.view.commentState.total-1)/numCommentsPerPage);return a!=null&&a!=""&&((tagged.photos.view.commentState.curr==0&&a.indexOf("first")!=-1)||(tagged.photos.view.commentState.curr==0&&a.indexOf("prev")!=-1)||(tagged.photos.view.commentState.curr==b&&a.indexOf("next")!=-1)||(tagged.photos.view.commentState.curr==b&&a.indexOf("last")!=-1))}};tagged.loadStringsDirect({"tagged.strings":{genericError:"Sorry, an error occurred. Please refresh the page and try again :(",locales:{ar_SA:"\u0627\u0644\u0639\u0631\u0628\u064a\u0629",az_AZ:"Az\u0259rbaycan",bn_IN:"\u09ac\u09be\u0982\u09b2\u09be",my_MM:"Burmese",zh_CN:"\u4e2d\u6587 - \u7b80\u5355",zh_TW:"\u4e2d\u6587 - \u50b3\u7d71",cs_CZ:"\u010ce\u0161tina",nl_NL:"Nederlands",en_US:"English",fr_FR:"Fran\u00e7ais",de_DE:"Deutsch",el_GR:"\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac",hi_IN:"\u0939\u093f\u0928\u094d\u0926\u0940",he_IL:"\u05e2\u05d1\u05e8\u05d9\u05ea",hu_HU:"Magyar",id_ID:"Indonesia",it_IT:"Italiano",ja_JP:"\u65e5\u672c\u8a9e",jv_ID:"basa Jawa",ko_KR:"\ud55c\uad6d\uc5b4",ms_MY:"Bahasa Melayu",mr_IN:"\u092e\u0930\u093e\u0920\u0940",ne_NP:"\u0928\u0947\u092a\u093e\u0932\u0940",fa_IR:"\u0641\u0627\u0631\u0633\u06cc",pl_PL:"Polska",pt_PT:"Portugu\u00eas",pa_IN:"\u0a2a\u0a70\u0a1c\u0a3e\u0a2c\u0a40",ro_RO:"Rom\u00e2n",ru_RU:"\u0420\u0443\u0441\u0441\u043a\u0438\u0439",es_ES:"Espa\u00f1ol - Spain",es_MX:"Espa\u00f1ol - Mexico",es_CO:"Espa\u00f1ol - Latin America",su_ID:"Basa Sunda",tl_PH:"Tagalog",ta_IN:"\u0ba4\u0bae\u0bbf\u0bb4\u0bcd",te_IN:"\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41",th_TH:"\u0e44\u0e17\u0e22",tr_TR:"T\u00fcrk\u00e7e",uk_UA:"\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430",ur_PK:"Urdu",vi_VN:"Vi\u1ec7t",ruf_US:"Fake \u0420\u0443\u0441\u0441\u043a\u0438\u0439",ebo_US:"Ebonics",zxx_XX:"XXX XXXX"}}});tagged.loadStringsDirect({"TAGGED.api.strings":{errorMethodMissing:"An error occurred. Please refresh the page and try again. Method is missing.",errorGeneral:"An error occurred. Please refresh the page and try again."}});tagged.loadStringsDirect({"tagged.util.dateHandler":{stringMoments:"moments ago",stringHalfMinute:"half a minute ago",stringLessMinute:"less than a minute ago",stringMinute:"a minute ago",stringMinutes:"%d minutes ago",stringHour:"an hour ago",stringHours:"%d hours ago",stringDay:"a day ago",stringDays:"%d days ago",stringMonth:"a month ago",stringMonths:"%d months ago",stringYear:"a year ago",stringYears:"%d years ago"}});tagged.loadStringsDirect({"tagged.photos.view.strings":{notHere:"Sorry, that photo is no longer there.",postAComment:"Post a comment",whoops:"Whoops - I can't find the image you want",genericTitle:"Tagged Photos",photoTitle:"Tagged Photos - %s",confirmProfile:'Click "OK" to make this your profile photo',confirmDeleteComDefault:"Are you sure you want to delete this comment?",confirmDeleteCom:"Do you want to delete this comment?",confirmDeletePhoto:'Click "OK" to delete this photo',noHTML:"Sorry, only plain text is allowed in photo comments",emptyComment:"You must enter some text! Try again",commentsSummary:"Comments %s - %s of %s",banned_caption:"Sorry, that caption contains HTML or banned content.",caption_error:"Sorry, an error occurred while setting the caption.  Please try again."}});tagged.loadStringsDirect({"tagged.header.alerts.strings":{newAlerts:"New Alerts"}});