YAHOO.namespace("tellafriend");var DOM=YAHOO.util.Dom;var EVT=YAHOO.util.Event;YAHOO.tellafriend.button=function(b,a){this.init(b,a)};YAHOO.tellafriend.button.prototype={pageType:null,location:"",init:function(b,a){this.pageType=a;this.location=location.href;EVT.on(b,"click",function(c){EVT.preventDefault(c);this.showDialog()},this,true)},showDialog:function(){var d=370;var c=480;var f=(DOM.getDocumentWidth()-d)/2;var b=(DOM.getDocumentHeight()/2)-c;var e="scrollbars=0,toolbar=0,menubar=0,resizable=0,status=0,width="+d+",height="+c+",top="+b+",left="+f;var a=window.open("/tell-friend.html?type="+this.pageType+"&loc="+this.location,"tellwindow",e);if(window.focus){a.focus()}}};