﻿jQuery.fn.popupwindow=function(b){var a=b||{};return this.each(function(f){var h,j,d,c,e;d=(jQuery(this).attr("rel")||"").split(",");h={height:600,width:600,toolbar:0,scrollbars:0,status:0,resizable:1,left:0,top:0,center:0,createnew:1,location:0,menubar:0};if(d.length==1&&d[0].split(":").length==1){e=d[0];if(typeof a[e]!="undefined"){h=jQuery.extend(h,a[e])}}else{for(var g=0;g<d.length;g++){c=d[g].split(":");if(typeof h[c[0]]!="undefined"&&c.length==2){h[c[0]]=c[1]}}}if(h.center==1){h.top=(screen.height-(h.height+110))/2;h.left=(screen.width-h.width)/2}j="location="+h.location+",menubar="+h.menubar+",height="+h.height+",width="+h.width+",toolbar="+h.toolbar+",scrollbars="+h.scrollbars+",status="+h.status+",resizable="+h.resizable+",left="+h.left+",screenX="+h.left+",top="+h.top+",screenY="+h.top;jQuery(this).bind("click",function(){var i=h.createnew?"PopUpWindow"+f:"PopUpWindow";window.open(this.href,i,j).focus();return false})})};
