// File: b_browser_969.js

Browser=function(){this.exclude=1;this.agt=navigator.userAgent.toLowerCase();this.win=0;this.mac=0;this.lin=1;if(this.agt.indexOf("win")!=-1){this.win=1;this.lin=0}if(this.agt.indexOf("mac")!=-1){this.mac=1;this.lin=0}this.lnx=0;if(this.lin){this.lnx=1}this.ice=0;this.ie=0;this.ie4=0;this.ie5=0;this.ie6=0;this.com=0;this.dcm;this.op5=0;this.op6=0;this.op7=0;this.ns4=0;this.ns6=0;this.ns7=0;this.mz7=0;this.kde=0;this.saf=0;if(typeof navigator.vendor!="undefined"&&navigator.vendor=="KDE"){this.thisKDE=agt;this.splitKDE=this.thisKDE.split("konqueror/");this.aKDE=this.splitKDE[1].split("; ");this.KDEn=parseFloat(this.aKDE[0]);if(this.KDEn>=2.2){this.kde=1;this.ns6=1;this.exclude=0}}else{if(this.agt.indexOf("webtv")!=-1){this.exclude=1}else{if(typeof window.opera!="undefined"){this.exclude=0;if(/opera[\/ ][5]/.test(agt)){this.op5=1}if(/opera[\/ ][6]/.test(agt)){this.op6=1}if(/opera[\/ ][7-9]/.test(agt)){this.op7=1}}else{if(typeof document.all!="undefined"&&!this.kde){this.exclude=0;this.ie=1;if(typeof document.getElementById!="undefined"){this.ie5=1;if(this.agt.indexOf("msie 6")!=-1){this.ie6=1;this.dcm=document.compatMode;if(this.dcm!="BackCompat"){this.com=1}}}else{this.ie4=1}}else{if(typeof document.getElementById!="undefined"){this.exclude=0;if(this.agt.indexOf("netscape/6")!=-1||this.agt.indexOf("netscape6")!=-1){this.ns6=1}else{if(this.agt.indexOf("netscape/7")!=-1||this.agt.indexOf("netscape7")!=-1){this.ns6=1;this.ns7=1}else{if(this.agt.indexOf("gecko")!=-1){this.ns6=1;this.mz7=1}}}if(this.agt.indexOf("safari")!=-1||(typeof document.childNodes!="undefined"&&typeof document.all=="undefined"&&typeof navigator.taintEnabled=="undefined")){this.mz7=0;this.ns6=1;this.saf=1}}else{if((this.agt.indexOf("mozilla")!=-1)&&(parseInt(navigator.appVersion)>=4)){this.exclude=0;this.ns4=1;if(typeof navigator.mimeTypes["*"]=="undefined"){this.exclude=1;this.ns4=0}}}}}}}if(this.agt.indexOf("escape")!=-1){this.exclude=1;this.ns4=0}if(typeof navigator.__ice_version!="undefined"){this.exclude=1;this.ie4=0}};var g_browser=new Browser();


// File: b_utils_1543.js

Utils=function(){};Utils.prototype.isset=function(A){var B=typeof (A);return(B!="undefined"&&B!="function")};Utils.prototype.gimme_elem_x_y=function(D){var B=0;var E=0;if(D.clientWidth){var C=D.clientWidth;var A=D.clientHeight}else{var C=D.offsetWidth;var A=D.offsetHeight}if(D.offsetParent){while(D.offsetParent){B+=D.offsetLeft;E+=D.offsetTop;D=D.offsetParent}}else{if(D.x){B+=D.x;E+=D.y}}return[B,E,C,A]};Utils.prototype.gimme_mouse_x_y=function(B){if(!B){var B=window.event}var A=0;var C=0;if(B.pageX||B.pageY){A=B.pageX;C=B.pageY}else{if(B.clientX||B.clientY){A=B.clientX+document.body.scrollLeft;C=B.clientY+document.body.scrollTop}}return[A,C]};Utils.prototype.getElementsByClass=function(G,E,A){var D=new Array();if(E==null){E=document}if(A==null){A="*"}var C=E.getElementsByTagName(A);var B=C.length;var F=new RegExp("(^|\\s)"+G+"(\\s|$)");for(i=0,j=0;i<B;i++){if(F.test(C[i].className)){D[j]=C[i];j++}}return D};Utils.prototype.utc_to_mid_str=function(D,A){var C=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");var F=new Date();var E=F.getTimezoneOffset()*60*1000;F.setTime((parseInt(D)*1000)-E);var B=C[F.getMonth()]+" "+F.getDate()+", "+F.getFullYear();if(A){B+=" "+F.getHours()+":"+F.getMinutes()}return B};Utils.prototype.encode64=function(D){var B="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=";var A="";var K,I,G;var J,H,F,E;var C=0;do{K=D.charCodeAt(C++);I=D.charCodeAt(C++);G=D.charCodeAt(C++);J=K>>2;H=((K&3)<<4)|(I>>4);F=((I&15)<<2)|(G>>6);E=G&63;if(isNaN(I)){F=E=64}else{if(isNaN(G)){E=64}}A=A+B.charAt(J)+B.charAt(H)+B.charAt(F)+B.charAt(E)}while(C<D.length);return A};Utils.prototype.decode64=function(D){var B="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_=";var A="";var K,I,G;var J,H,F,E;var C=0;D=D.replace(/[^A-Za-z0-9\+\/\=]/g,"");do{J=B.indexOf(D.charAt(C++));H=B.indexOf(D.charAt(C++));F=B.indexOf(D.charAt(C++));E=B.indexOf(D.charAt(C++));K=(J<<2)|(H>>4);I=((H&15)<<4)|(F>>2);G=((F&3)<<6)|E;A=A+String.fromCharCode(K);if(F!=64){A=A+String.fromCharCode(I)}if(E!=64){A=A+String.fromCharCode(G)}}while(C<D.length);return A};Utils.prototype.redirect=function(C,B,A){if(B){g_trace.log("Redirecting now to "+C+"#"+B);location.href="/redirect.html?redir="+C+"&hash="+B+"&hash_var="+A}else{g_trace.log("Redirecting now to "+C);location.href="/redirect.html?redir="+C}};Utils.prototype.redirect_to_sign_in=function(){var A=g_utils.encode64(window.location.href);window.location="/sign_in.html?goto="+A};Utils.prototype.cursor_to_drag=function(A){document.getElementById(A).style.cursor='url("/i/new/hand_open.cur"), move'};Utils.prototype.cursor_dragging=function(A){document.getElementById(A).style.cursor='url("/i/new/hand_closed.cur"), move'};Utils.prototype.cursor_auto=function(A){document.getElementById(A).style.cursor="auto"};Utils.prototype.preload_drag_cursors=function(){var A=new Image();A.src="/i/new/hand_open.cur";A.src="/i/new/hand_closed.cur"};g_utils=new Utils();


// File: b_events_1376.js

g_events=new Array();g_events.listeners=new Array();g_events.has_dom_loaded=0;g_events.stored_listeners=new Array();g_events.add=function(G,H,F,D,E){if(H=="ondomload"){if(g_browser.saf){H="onload"}}var B=G+H;if(!this.has_dom_loaded&&G!="window"){var A=new Array();A.element_id_str=G;A.event_type=H;A.listener=F;A.listener_obj=D;A.listener_param=E;g_events.stored_listeners[g_events.stored_listeners.length]=A;return }var C;switch(G){case"window":C=window;break;case"document":C=document;break;case"body":C=document.body;break;default:C=document.getElementById(G);if(!(!(C))){break}g_trace.log("(Event) Invalid element: "+G+" with event_type: "+H);return }if(H=="onclick"&&g_browser.ie){C.style.cursor="hand"}if(g_events.listeners[B]==undefined){g_events.listeners[B]=new Event(C,H);g_events.listeners[B].add_listener(F,D,E)}else{g_events.listeners[B].add_listener(F,D,E)}};g_events.remove=function(G,H,F,D){var B=G+H;if(!this.has_dom_loaded&&G!="window"){var C,A,E;for(C=0,A=this.stored_listeners.length;C<A;C++){E=this.stored_listeners[C];if(G==E.element_id_str&&E.event_type==H&&F==E.listener){this.stored_listeners.splice(C,1);return }}}if(g_events.listeners[B]==undefined){g_trace.log("error - remove event failed for "+G+"("+H+")");return }g_events.listeners[B].remove_listener(F,D);if(g_events.listeners[B].gimme_length()==0){g_events.listeners[B].clear(H);delete g_events.listeners[B]}};g_events.trigger_resize=function(){var A="windowonresize";g_events.listeners[A].notify()};g_events.domloaded=function(){var A;this.has_dom_loaded=1;while(this.stored_listeners.length>0){A=this.stored_listeners.shift();this.add(A.element_id_str,A.event_type,A.listener,A.listener_obj,A.listener_param)}};var g_domload_event_object=null;Event=function(A,B){this.listeners=new Array();this.event_type=B;this.element=A;switch(B){case"onblur":A.r_onblur=this;A[B]=Event.cb_onblur;break;case"onclick":A.r_onclick=this;A[B]=Event.cb_onclick;break;case"onchange":A.r_onchange=this;A[B]=Event.cb_onchange;break;case"onfocus":A.r_onfocus=this;A[B]=Event.cb_onfocus;break;case"onload":A.r_onload=this;A[B]=Event.cb_onload;break;case"onmousedown":A.r_onmousedown=this;A[B]=Event.cb_onmousedown;break;case"onmousemove":A.r_onmousemove=this;A[B]=Event.cb_onmousemove;break;case"onmouseup":A.r_onmouseup=this;A[B]=Event.cb_onmouseup;break;case"onmouseover":A.r_onmouseover=this;A[B]=Event.cb_onmouseover;break;case"onmouseout":A.r_onmouseout=this;A[B]=Event.cb_onmouseout;break;case"onmove":A.r_onmove=this;A[B]=Event.cb_onmove;break;case"onkeydown":A.r_onkeydown=this;A[B]=Event.cb_onkeydown;break;case"onkeyup":A.r_onkeyup=this;A[B]=Event.cb_onkeyup;break;case"onkeypress":A.r_onkeypress=this;A[B]=Event.cb_onkeypress;break;case"onresize":A.r_onresize=this;A[B]=Event.cb_onresize;break;case"onselect":A.r_onselect=this;A[B]=Event.cb_onselect;break;case"onsubmit":A.r_onsubmit=this;A[B]=Event.cb_onsubmit;break;case"onunload":A.r_onunload=this;A[B]=Event.cb_onunload;break;case"onbeforeunload":A.r_onbeforeunload=this;A[B]=Event.cb_onbeforeunload;break;case"onmousewheel":A.r_onmousewheel=this;if(window.addEventListener){A.addEventListener("DOMMouseScroll",Event.cb_onmousewheel,false)}A[B]=Event.cb_onmousewheel;break;case"onefchange":g_ef.set_listener(this.notify,this);g_ef.start_detect();break;case"onboardresize":g_board.register_adjust_me_too(this,this.notify);break;case"ondomload":g_domload_event_object=this;break;default:g_trace.log("error - invalid event_type - "+B);break}};Event.prototype.clear=function(A){if(A=="onmousewheel"&&window.addEventListener){this.element.removeEventListener("DOMMouseScroll",Event.cb_onmousewheel_moz,false)}switch(A){case"onblur":this.element.r_onblur=null;break;case"onclick":this.element.r_onclick=null;break;case"onchange":this.element.r_onchange=null;break;case"onfocus":this.element.r_onfocus=null;break;case"onload":this.element.r_onload=null;break;case"onmousedown":this.element.r_onmousedown=null;break;case"onmousemove":this.element.r_onmousemove=null;break;case"onmouseup":this.element.r_onmouseup=null;break;case"onmouseover":this.element.r_onmouseover=null;break;case"onmouseout":this.element.r_onmouseout=null;break;case"onmove":this.element.r_onmove=null;break;case"onkeydown":this.element.r_onkeydown=null;break;case"onkeyup":this.element.r_onkeyup=null;break;case"onkeypress":this.element.r_onkeypress=null;break;case"onresize":this.element.r_onresize=null;break;case"onselect":this.element.r_onselect=null;break;case"onsubmit":this.element.r_onsubmit=null;break;case"onunload":this.element.r_onunload=null;break;case"onbeforeunload":this.element.r_onbeforeunload=null;break;case"onmousewheel":this.element.r_onmousewheel=null;break;case"onefchange":g_ef.stop_detect();break;case"onboardresize":g_board.unregister_adjust_me_too();break;case"ondomload":break;default:g_trace.log("events: error clearing invalid event_type - "+A);break}this.element[A]=null;delete this.listeners;this.element=null};Event.prototype.add_listener=function(D,B,C){if(this.remove_listener(D,B)==1){g_trace.log("duplicate event for element: "+this.element+" event_type: "+this.event_type+" listener: "+D+" removed before adding again")}var A=new Array();A.listener=D;if(B=="undefined"||B==null){A.listener_obj=this}else{A.listener_obj=B}A.listener_param=C;this.listeners[this.listeners.length]=A};Event.prototype.remove_listener=function(D,B){var C=this.listeners;if(B==undefined){for(var A=0;A<C.length;A++){if(C[A].listener==D){C.splice(A,1);return 1}}}else{for(var A=0;A<C.length;A++){if(C[A].listener==D&&C[A].listener_obj==B){C.splice(A,1);return 1}}}return 0};Event.prototype.gimme_length=function(){return this.listeners.length};Event.prototype.notify=function(E){var G=new Array();var D,B,C;for(D=0,B=this.listeners.length;D<B;D++){G[D]=this.listeners[D]}for(D=0,B=G.length;D<B;D++){var F=G[D].listener;var H=G[D].listener_obj;var A=G[D].listener_param;C=F.call(H,E,A)}delete G;return C};Event.callback=function(B){var C=B||window.event;var A=this.event_router;return A.notify(C)};Event.cb_onblur=function(A){return this.r_onblur.notify(A||window.event)};Event.cb_onclick=function(A){return this.r_onclick.notify(A||window.event)};Event.cb_onchange=function(A){return this.r_onchange.notify(A||window.event)};Event.cb_onfocus=function(A){return this.r_onfocus.notify(A||window.event)};Event.cb_onload=function(A){return this.r_onload.notify(A||window.event)};Event.cb_onmousedown=function(A){return this.r_onmousedown.notify(A||window.event)};Event.cb_onmousemove=function(A){return this.r_onmousemove.notify(A||window.event)};Event.cb_onmouseup=function(A){return this.r_onmouseup.notify(A||window.event)};Event.cb_onmouseover=function(A){return this.r_onmouseover.notify(A||window.event)};Event.cb_onmouseout=function(A){return this.r_onmouseout.notify(A||window.event)};Event.cb_onmove=function(A){return this.r_onmove.notify(A||window.event)};Event.cb_onkeydown=function(A){return this.r_onkeydown.notify(A||window.event)};Event.cb_onkeyup=function(A){return this.r_onkeyup.notify(A||window.event)};Event.cb_onkeypress=function(A){return this.r_onkeypress.notify(A||window.event)};Event.cb_onresize=function(A){return this.r_onresize.notify(A||window.event)};Event.cb_onselect=function(A){return this.r_onselect.notify(A||window.event)};Event.cb_onsubmit=function(A){return this.r_onsubmit.notify(A||window.event)};Event.cb_onunload=function(A){return this.r_onunload.notify(A||window.event)};Event.cb_onbeforeunload=function(A){return this.r_onbeforeunload.notify(A||window.event)};Event.cb_onmousewheel=function(A){if(!A){A=window.event}if(A.wheelDelta){delta=A.wheelDelta/120;if(window.opera){delta=-delta}}else{delta=-A.detail/3}return this.r_onmousewheel.notify(delta)};Event.domload_callback=function(){if(g_domload_event_object==null){return }var A=g_domload_event_object;A.notify()};g_events.add("window","ondomload",g_events.domloaded,g_events);


// File: b_trace_1090.js

function Trace(B){if(!window.console||!console.firebug){var C=["log","debug","info","warn","error","assert","dir","dirxml","group","groupEnd","time","timeEnd","count","trace","profile","profileEnd"];window.console={};for(var A=0;A<C.length;++A){window.console[C[A]]=function(){}}}this.embedded=0;this.trace_on=1;this.store=0;this.stored="";this.trace_object=document.getElementById(B);if(!this.trace_object){this.store=1;this.trace_id=B;if(!window.console||!console.firebug){g_events.add("window","ondomload",this.flush_trace_store,this)}}else{this.clear()}}Trace.prototype.embed=function(){this.embedded=1;document.write('<div id="'+this.trace_id+'"></div>')};Trace.prototype.trace_on=function(){this.trace_on=1};Trace.prototype.trace_off=function(){this.trace_on=0};Trace.prototype.clear=function(){if(!window.console||!console.firebug){}};Trace.prototype.log=function(A){if(!window.console||!console.firebug){}else{console.log(A)}};Trace.prototype.flush_trace_store=function(){if((this.trace_object=document.getElementById(this.trace_id))==null){alert("replaceme still isn't defined");return }this.clear();this.store=0;this.trace_object.innerHTML+=this.stored;this.stored=""};g_trace=new Trace("replaceme");


// File: b_ef_969.js

EF=function(){this.e_name="ef_embed";this.embedded=0;this.started=0;this.listener=null;this.l_obj=null;this.interval=null;this.interval_delay=200;this.value=null};EF.prototype.gimme_ef=function(A){return A*this.value};EF.prototype.gimme_ef_unit=function(){return this.value};EF.prototype.embed=function(){document.write('<span style="position: absolute; left: -9999px;" id="'+this.e_name+'">m&nbsp;</span>');this.embedded=1;if(this.started){this.start_detect()}this.value=document.getElementById(this.e_name).offsetWidth};EF.prototype.set_listener=function(A,B){this.listener=A;if(B=="undefined"||B==null){this.l_obj=this}else{this.l_obj=B}};EF.prototype.start_detect=function(){this.started=1;if(this.interval){return }if(!this.embedded){return }var B=this;var D=document.getElementById(this.e_name);var C=D.offsetWidth;function A(){var E=D.offsetWidth;if(E!=C){C=E;B.value=E;B.listener.call(B.l_obj,E)}}this.interval=setInterval(A,this.interval_delay)};EF.prototype.stop_detect=function(){this.started=0;clearInterval(this.interval);this.interval=null};g_ef=new EF();


// File: b_cookie_1128.js

Cookie=function(A){this.name=A;this.domain=".flickaway.com"};Cookie.prototype.set=function(D,C){var B=new Date();B.setTime(B.getTime());if(C){var A=new Date(B.getTime()+(parseInt(C)*60*1000))}document.cookie=this.name+"="+escape(D)+((A)?"; expires="+A.toGMTString():"")+"; path=/; domain="+this.domain;if(document.cookie.indexOf(this.name+"="+D,0)<0){return false}return true};Cookie.prototype.clear=function(){document.cookie=this.name+"=; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/; domain="+this.domain;if(document.cookie.indexOf(this.name+"=",0)<0){return true}return false};Cookie.prototype.get=function(){var A=document.cookie.indexOf(this.name+"=");if(A!=-1){A=A+this.name.length+1;end=document.cookie.indexOf(";",A);if(end==-1){end=document.cookie.length}return unescape(document.cookie.substring(A,end))}return null};


// File: b_timezone_1376.js

TZ=function(){d=new Date();this.offset=d.getTimezoneOffset()*-1;tc=new Cookie("zc");if(tc.get()!=this.offset){tc.set(this.offset,525600)}};g_tz=new TZ();


// File: b_simple_board_1376.js

function SimpleBoard(){}SimpleBoard.prototype.adjust=function(){board_elem=document.getElementById("board");boarder_elem=document.getElementById("boarder");board_height=board_elem.offsetHeight;board_width=board_elem.offsetWidth;document.getElementById("bstl").style.width=board_width+"px";document.getElementById("bsbl").style.width=board_width+"px";document.getElementById("bsl").style.height=board_height+"px";document.getElementById("bsr").style.height=board_height+"px";if(this.adjust_me_too_func){this.adjust_me_too_func.call(this.adjust_me_too_obj)}};SimpleBoard.prototype.register_adjust_me_too=function(B,A){this.adjust_me_too_obj=B;this.adjust_me_too_func=A};SimpleBoard.prototype.unregister_adjust_me_too=function(){this.adjust_me_too_obj=null;this.adjust_me_too_func=null};SimpleBoard.prototype.load=function(){this.adjust();g_events.add("window","onefchange",this.adjust,this);g_events.add("window","onresize",this.adjust,this)};g_board=new SimpleBoard();g_events.add("window","ondomload",g_board.load,g_board);


// File: b_note_1376.js

if(window.g_note_z_index==undefined){g_note_z_index=1000}Note=function(){this.my_div=null;this.my_frame=null;this.pointy=null;this.max_width=500;this.min_width=200;this.class_name=null;this.delay=null;this.offer_x=true;this.z_index=g_note_z_index;g_note_z_index+=10};Note.prototype.snap=function(D,F,B,A,E,C){this.snap_id=F;this.snap_x_offset=B;this.snap_y_offset=A;this.snap_w_factor=E;this.snap_h_factor=C;this.type=D};Note.prototype.set_width_bounds=function(B,A){this.min_width=B;this.max_width=A};Note.prototype.disable_x=function(){this.offer_x=false};Note.prototype.set_class_name=function(A){this.class_name=A;this.max_width=width};Note.prototype.create=function(H,G,F,A,E,B){this.id=H;this.close_id=H+"_close";this.title=G;this.text=F;if(this.class_name==null){this.class_name="note note_"+this.type}if(A){this.close_timeout=A}else{this.close_timeout=0}if(E){this.close_callback=E;this.close_callback_scope=B}var D="";D+=' <table cellpadding="0" cellspacing="0" >';D+='  <tr><td class="tl"></td><td class="t"></td><td class="tr"></td></tr>';D+='  <tr><td class="l"></td>';D+='  <td id="'+this.id+'_content" class="content">';if(this.offer_x){D+='<a href="#" class="close" id="'+this.close_id+'"><img src="/i/s.gif" /></a>'}D+="   <h1>"+G+"</h1>";D+="   <p>"+F+"</p>";D+='  </td><td class="r"></td></tr>';D+='  <tr><td class="bl"></td><td class="b"></td><td class="br"></td></tr>';D+=" </table>";this.my_div=document.createElement("div");this.my_div.id=H;this.my_div.className=this.class_name;this.my_div.style.zIndex=this.z_index+1;document.body.appendChild(this.my_div,0);this.my_div.style.visibility="hidden";this.my_div.innerHTML=D;this.pointy=document.createElement("div");document.body.appendChild(this.pointy,0);this.pointy.style.visibility="hidden";this.pointy.style.zIndex=this.z_index+2;this.pointy.className="pointy pointy_"+this.type;this._position_note(1);var C=this;setTimeout(function(){C._position_note()},100);if(this.offer_x){g_events.add(this.close_id,"onclick",this.close,this,true)}g_events.add("document","onboardresize",this._delayed_position_note,this)};Note.prototype._delayed_position_note=function(){var A=this;clearTimeout(this.delay);this.delay=setTimeout(function(){A._position_note()},20)};Note.prototype._position_note=function(N){if(this.snap_id){this.my_div.style.width="auto";var H=g_utils.gimme_elem_x_y(document.getElementById(this.id+"_content"));var I=H[2];var J=I+34;if(J<this.min_width){J=this.min_width}else{if(J>this.max_width){J=this.max_width}}this.my_div.style.width=J+"px";var H=g_utils.gimme_elem_x_y(document.getElementById(this.snap_id));var L=H[0];var K=H[1];var M=H[2];var E=H[3];var H=g_utils.gimme_elem_x_y(this.my_div);var J=H[2];var C=H[3];var A=0,O=0;switch(this.type){case"tl":A=-9;O=26;break;case"tr":A=-1*J+20;O=26;break;case"bl":A=-9;O=-1*C-22;break;case"br":A=-1*J+15;O=-1*C-22;break;case"lt":A=22;O=-8;break;case"rt":A=-1*J-24;O=-8;break;case"lb":A=24;O=-1*C+16;break;case"rb":A=-1*J-24;O=-1*C+16;break}var D=L+(this.snap_w_factor*M)+this.snap_x_offset+A;var B=K+(this.snap_h_factor*E)+this.snap_y_offset+O;var G=0,F=0;switch(this.type){case"tl":G=D+11;F=B-24;break;case"tr":G=D+J-66;F=B-24;break;case"bl":G=D+11;F=B+C-14;break;case"br":G=D+J-61;F=B+C-14;break;case"lt":G=D-25;F=B+10;break;case"rt":G=D+J-12;F=B+10;break;case"lb":G=D-25;F=B+C-54;break;case"rb":G=D+J-12;F=B+C-54;break}this.my_div.style.left=D+"px";this.my_div.style.top=B+"px";this.pointy.style.left=G+"px";this.pointy.style.top=F+"px";if(N==null){this.my_div.style.visibility="visible";this.pointy.style.visibility="visible"}if(document.all){if(this.my_frame!=null){this.my_frame.parentNode.removeChild(this.my_frame)}this.my_frame=document.createElement("iframe");this.my_frame.src="javascript:false;";this.my_frame.style.position="absolute";this.my_frame.style.left=D+"px";this.my_frame.style.top=B+"px";this.my_frame.style.width=J+"px";this.my_frame.style.height=C+"px";this.my_frame.style.border="none";this.my_frame.style.zIndex=this.z_index;this.my_frame.style.display="inline";this.my_frame.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)";document.body.appendChild(this.my_frame,0)}}};Note.prototype.close=function(A){if(this.offer_x){g_events.remove(this.close_id,"onclick",this.close,this)}g_events.remove("document","onboardresize",this._delayed_position_note,this);if(document.all&&this.my_frame!=null){this.my_frame.parentNode.removeChild(this.my_frame)}this.my_div.parentNode.removeChild(this.my_div);this.pointy.parentNode.removeChild(this.pointy);if(A&&this.close_callback){this.close_callback.apply(this.close_callback_scope,[])}return false};


// File: b_tour_note_1494.js

TourNote=function(){this.note=null;this.out_timer=null};TourNote.prototype.mouse_over=function(){g_trace.log("tour note mouse_over");if(this.out_timer!=null){clearTimeout(this.out_timer);this.out_timer=null}if(this.note!=null){return }var A="";var B="";A+="You can host your own photos on FlickAway.";this.note=new Note();this.note.disable_x();this.note.snap("rt","tour_link",0,0,0,1);this.note.create("tour_note",B,A,null)};TourNote.prototype.mouse_out=function(){if(this.out_timer!=null){return }var A=this;this.out_timer=setTimeout(function(){A.note.close();A.out_timer=null;A.note=null},300);g_trace.log("tour note mouse_out")};


// File: b_ondomload_969.js

function ondomload(C,A){var D=0;var B=setInterval(function(){var E=true;D++;if(!g_trace.embedded){return }if(typeof document.getElementsByTagName!="undefined"&&(document.getElementsByTagName("body")[0]!=null||document.body!=null)&&document.getElementById(g_trace.trace_id)!=null){E=false;if(typeof A=="object"){for(var F in A){if((A[F]=="id"&&document.getElementById(F)==null)||(A[F]=="tag"&&document.getElementsByTagName(F).length<1)){E=true;break}}}if(!E){clearInterval(B);g_trace.log("ondomload took "+D+" loop(s)");C()}}if(D>=1000){clearInterval(B)}},50)}var domloader=new ondomload(Event.domload_callback);


