if(typeof(Meetup.UI)=="undefined"){Meetup.UI={}}Meetup.UI.MoreInfo=function(helpedEl,helpEl,position){bindMethods(this);this.helpedEl=helpedEl;this.helpEl=helpEl;this.position=position};Meetup.UI.MoreInfo.prototype={show:function(){if(this.pop==null||(this.pop!=null&&!this.pop.isShowing())){var nPos=getElementPosition(this.helpedEl);var nDim=getElementDimensions(this.helpedEl);this.helpEl.style.width=(nDim.w*1.5)+"px";this.pop=new Meetup.DiscreteInteractDialog(this.helpEl);if(this.position=="left"){var thisx=nPos.x+10;this.pop.tip(Meetup.DiscreteInteractDialog.ORIENT_E)}else{var thisx=nPos.x+nDim.w-10;this.pop.tip(Meetup.DiscreteInteractDialog.ORIENT_W)}this.pop.position(thisx,nPos.y+175);this.popTimeout=window.setTimeout(this.pop.show,500);var poproot=this.pop.getRoot();connect(poproot,"onmouseover",this.pop.show);connect(poproot,"onmouseout",this.pop.hide)}else{this.pop.show()}},hide:function(){clearTimeout(this.popTimeout);if(this.pop!=null){this.pop.hide()}},pop:null,popTime:null,position:null,helpedEl:null,helpEl:null};