if(!parent.frames.length)
{
	var is_match = /click=([a-zA-Z0-9]{32})/.exec(document.location.href);
	if(is_match && is_match.length == 2)
	{
		var doc_loc = new String(document.location.href);
		var podaj_hit_url = '/pdhit.php?ru=' +  escape(doc_loc.substring(0,299));
		
		if (document.referrer) 
		{
			var ref = new String(document.referrer);
			podaj_hit_url += '&ref=' + escape(ref.substring(0, 299));
		}
		
		podaj_hit_url += '&click='+is_match[1];
		window.podaj_stat_image = new Image();
		window.podaj_stat_image.src = podaj_hit_url;

	}	
	else 
	{
		var is_match = /clk=([a-zA-Z0-9]{32})/.exec(document.location.href);
		if(is_match && is_match.length == 2)
		{
			var doc_loc = new String(document.location.href);
			var podaj_hit_url = '/pdhit.php?ru=' +  escape(doc_loc.substring(0,299));
			
			if (document.referrer) 
			{
				var ref = new String(document.referrer);
				podaj_hit_url += '&ref=' + escape(ref.substring(0, 299));
			}
			
			podaj_hit_url += '&clk='+is_match[1];
			window.podaj_stat_image = new Image();
			window.podaj_stat_image.src = podaj_hit_url;

		}	
	}
	setTimeout(function () {
		//document.location = '/';
	}, 3000);
}	