<!--
var now = new Date();
var TZ = (-1 * now.getTimezoneOffset() ) / 60;
var fl = false;

WScr = window.screen;
ColorDepth = WScr.colorDepth
Resolution = WScr.width + 'x' + WScr.height;

JavaAvailable = (navigator.javaEnabled()) ? 'Y' : 'N';
FlashVersion = '';
MatchArray = new Array();

MimeTypes = navigator.mimeTypes;
if( MimeTypes )
{
	FlashAvailable = MimeTypes["application/x-shockwave-flash"];
	if( FlashAvailable && FlashAvailable.enabledPlugin )
	{
		MatchArray = navigator.plugins["Shockwave Flash"].description.match(/^Shockwave\s*Flash\s*(\d+\.\d+)\s*r\d+$/);
		FlashVersion = MatchArray[1];
		if( ! FlashVersion )
		{
			FlashVersion = navigator.plugins["Shockwave Flash"].description;
		}
	}
}

try
{
	Referrer = top.document.referrer.toLowerCase();
}
catch(e)
{
	Referrer = '';
	fl = true;
}

if( fl )
{
	try
	{
		Referrer = top.opener.document.URL;
	}
	catch(e)
	{
		Referrer = '';
	}
}

DocUrl = document.URL.toLowerCase();
Referrer = ( Referrer == DocUrl ) ? '' : Referrer;

my_url = '<img src="Counter.php?docurl=' + escape(DocUrl) + '&ref=' + escape(Referrer) + '&cd=' + ColorDepth + '&res=' + escape(Resolution) + '&java=' + JavaAvailable + '&flash=' + escape(FlashVersion) +  '&TZ=' + TZ + '" border=0 alt="Lotoexpert - portalul care iti poarta norocul"';

document.write(my_url);
// -->
