// COPYRIGHT (C) 2005-2006 - http://liczniki.org
function cookie_set(name, val, exp_hours)
{
	c = name+ '=' + val+";";
	if (exp_hours)
	{
		var d = new Date;
		var msec = Date.UTC(d.getUTCFullYear(), d.getUTCMonth(),
		d.getUTCDate(), d.getUTCHours(), d.getUTCMinutes());
		msec += exp_hours*(3600*1000);
		d.setTime(msec);
		c += "Expires=" + d.toGMTString();		
	}
	document.cookie = c;
}

function cookie_get(name, def_value)
{
	var pos = document.cookie.indexOf(name+'=');
	if (pos == -1) return def_value;
	pos += name.length +1;
	
	var pos2 = document.cookie.indexOf(';', pos);
	if (pos2 == -1) pos2 = document.cookie.length;
	return document.cookie.substring(pos, pos2);
}

var a = "<script type='text/javascript' src='http://liczniki.org/hit.php?hittype2=1&l=rybaxx&dbid=21668&o=1&rybaxx="+
cookie_get("rybaxx_1")+"&rybaxx_r="+cookie_get("rybaxx_1_r")+"' defer='defer'></"+"script>";
document.write("<a href='http://liczniki.org/?mod=licznik&action=showstatsonly&login=rybaxx&o=1'><img src='http://liczniki.org//gfxgen.php?n=3371&amp;i=41' style='border:none;' alt='3371'></img></a>");
document.write(a);

cookie_set("rybaxx_1", "t", 1);
cookie_set("rybaxx_1_r", "t", 365*24);
 