function str_split ( f_string, f_split_length){ 
    f_string += '';
 
    if (f_split_length == undefined) {
        f_split_length = 1;
    }
    if(f_split_length > 0){
        var result = [];
        while(f_string.length > f_split_length) {
            result[result.length] = f_string.substring(0, f_split_length);
            f_string = f_string.substring(f_split_length);
        }
        result[result.length] = f_string;
        return result;
    }
    return false;
}
var now = new Date(); //2
var then = new Date("June 22, 2012"); //3
var gap = then.getTime() - now.getTime(); //4
gap = Math.floor(gap / (1000 * 60 * 60 * 24)); //5
gaps = str_split(gap, 1);
var i=0;
var IMG_URL = "http://www.easyriderparty.pl/counter/";
for (i = 0; gaps[i]; i++)
{
	document.write('<img src="' + IMG_URL + 'ani' + gaps[i] + '.gif" alt="5" height="20" width="15" style="float: left;" />');
}

// //7
