<!-- hide from non-JavaScript browsers
var cug='5c701dd8-e7c5-40a0-a559-1d7d1676f685';

function pageWidth() 
{
	if(window.innerWidth != null)
	{
		return window.innerWidth;
	}
	else
	{ 
		if(document.documentElement && document.documentElement.clientWidth)
		{
			return document.documentElement.clientWidth;
		}
		else
		{ 
			if(document.body != null)
			{
				return document.body.clientWidth;
			}
			else
			{
				return "";
			}
		}
	}
}

function pageHeight() 
{
	if(window.innerHeight != null)
	{
		return window.innerHeight;
	}
	else
	{ 
		if(document.documentElement && document.documentElement.clientHeight)
		{
			return document.documentElement.clientHeight;
		}
		else
		{ 
			if(document.body != null)
			{
				return document.body.clientHeight;
			}
			else
			{
				return "";
			}
		}
	}
} 

function psize()
{
	var bw="";
	var bh="";
	bw=pageWidth();
	bh=pageHeight();
	return "&bw="+bw+"&bh="+bh;
}


var extra=psize();
document.write("<img id='lt' src='/limect.aspx?cug="+cug+"&rid="+rid+extra+"'/>");
// end hide -->