namespace("UI");Meetup.UI.EmbedThis=function(b,a,c){bindMethods(this);this.element=b;this.url=a;connect(this.element,"onclick",this.show);this.overElement=c};Meetup.UI.EmbedThis.prototype={show:function(b){var c=this.makeDialog(b);var a=this.overElement||this.element;var d=Meetup.UI.Dialog.showModal(c,a)},makeDialog:function(a){return DIV({"class":""},H2(null,"Add This to Your Website or Blog"),P(null,"Copy the text in the box and paste it to a section of your website that can accept HTML. If you're adding the gadget to a blog you may want to add it to a sidebar so it stays on the front page. The gadget will refresh every time the page loads."),INPUT({style:"width: 99%;",value:'<script type="text/javascript" src="'+this.url+'"><\/script>'}),DIV({style:"text-align: center;margin-top: 1em"},INPUT({type:"submit",id:"link_close",value:"OK","class":"D_submit"}),DIV({style:"margin-top:.5em"},SPAN({"class":"linked cancel-link D_less"},"Cancel"))))}};