/**
 * (ñ) 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 = 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;" />';
	
	$('body').append(code);
});