/**
 * (ñ) i.m
 * 31.10.2009 - remake
 */

/**
 *
 */
function format_q(code)
{
	var text="";
	if (!code || code=="") return "";
	for (var i=0; i<code.length; i++)
	{
		if (code.charAt(i) == " ")
		{
			text += "+";
		} else if (code.charAt(i) == "&") {
			text += "%26";
		} else if (code.charAt(i) == "?") {
			text += "%3F";
		} else if (code.charAt(i) == "/") {
			text += "%2F";
		} else {
			text += code.charAt(i);
		}
	}
	return text;
}

/**
 *
 */
$(document).ready(function(){
	//var ref = 'http://www.google.com.ua/search?hl=ru&client=firefox-a&rls=org.mozilla%3Aru%3Aofficial&hs=5fX&q=naturespharma&btnG=%D0%9F%D0%BE%D0%B8%D1%81%D0%BA&meta=&aq=&oq=naturespharma.dynamixcms.com';
	//var ref='http://yandex.ua/yandsearch?rdrnd=898396&text=pharma&clid=14585&lr=187';
	
	var ref = document.referrer;
	
	var code = '<img src="/counter.php?'+
		'&referrer='+format_q(ref)+
		((typeof(screen)=='undefined')?'':'&w='+screen.width+'&h='+screen.height+'&c='+(screen.colorDepth?screen.colorDepth:screen.pixelDepth))+
		'&url='+format_q((document.URL))+
		'&title='+format_q(document.title.substring(0,80))+
		'&'+Math.random()+
		'" alt="" border="0" width="1" height="1" style="visibility: hidden;" />';
	
	// alert(code);
	
	$('body').append(code);
});