function get_params(id)
{
	par = "http://wierzba.wzks.uj.edu.pl/~dubinski/stat/stat.php?";
	if (id)
	{
	  par += "id=" + id;
	}
	if (document.referrer)
	{
	  par += "&ref=" + escape(document.referrer); //escape
	}
	if (screen.width && screen.height)
	{
	  par += "&res=";
	  par += screen.width;
	  par += "x";
	  par += screen.height;
	}
	if (screen.colorDepth)
	{
	  par += "&dep=" + screen.colorDepth;
	}
	return par;
}
