var MootoolsMisc=new Class({create_button:function(b){var c=new Element("button",{"class":"type_1"});var d=new Element("table");var a=new Element("tbody");var e=new Element("tr");e.adopt(new Element("td",{"class":"btn_l"}),new Element("td",{"class":"btn_m",text:b}),new Element("td",{"class":"btn_r"}));a.adopt(e);d.adopt(a);c.adopt(d);return c},smart_substring:function(b,g,d){var e=0;var f=d;if(g>0){for(var c=g;e==0&&c<d;c++){if(b.charAt(c)==" "){e=c+1}}}if(f<b.length){for(var a=d;f==d&&a>e;a--){if(b.charAt(a)==" "){f=a}}}return b.substring(e,f)},format_date:function(d){var b=d.split(" ");var a=b[0].split(".");var c=new Date();c.setDate(a[0]);c.setMonth(a[1]-1);c.setFullYear(a[2]);if(c.is_today()){return"dzisiaj "+b[1]}if(c.is_yesterday()){return"wczoraj "+b[1]}return d},open_window:function(d,c,e,a,b){var g=(screen.width-e)/2;var f=(screen.height-a)/2;if(!b){b="status=no,toolbar=no,location=no,menubar=no,resizable=no,scrollbars=no,height="+a+",width="+e+",left="+g+",top="+f}window.open(d,c,b)}});
