var s="";
var anz="";
var besucher=0;
s = document.getElementById("chatcounter").innerHTML;
s = s.substring(2);
s = s.substring(s.indexOf(".png")-1);
anz = s.substring(0,1);
s = s.substring(5);
s = s.substring(s.indexOf(".png")-1);
anz = anz + s.substring(0,1);
s = s.substring(5);
s = s.substring(s.indexOf(".png")-1);
anz = anz + s.substring(0,1);
besucher = parseInt(anz);
if (besucher == 0) besucher++;
besucher = besucher - 1;
document.write(besucher);
