jQuery.fn.popup=function(a){var b={width:screen.width/2,height:screen.height/2,titlebar:true,status:true,resizable:true,toolbar:true,scrollbars:true,menubar:true};var a=jQuery.extend(b,a);Boolean.prototype.setProperty=function(){if(this==true){return"yes"}else{return"no"}};return this.each(function(){jQuery(this).click(function(){var e=this.target;var c=this.href;var f=(parseInt(screen.height/2))-(parseInt(a.height/2));var g=(parseInt(screen.width/2))-(parseInt(a.width/2));var d=window.open(c,e,"titlebar="+a.titlebar.setProperty()+", screenX="+g+", screenY="+f+", left="+g+", top="+f+", status="+a.status.setProperty()+", resizable="+a.resizable.setProperty()+", toolbar="+a.toolbar.setProperty()+", scrollbars="+a.scrollbars.setProperty()+", menubar="+a.menubar.setProperty()+", width="+a.width+", height="+a.height);return false})})};
