function GetCookie(sName)
		{
		  // cookies are separated by semicolons
		  var aCookie = document.cookie.split("; ");
		  for (var i=0; i < aCookie.length; i++)
		  {
			// a name/value pair (a crumb) is separated by an equal sign
			var aCrumb = aCookie[i].split("=");
			if (sName == aCrumb[0]) 
			  return unescape(aCrumb[1]);
		  }
		  // a cookie with the requested name does not exist
		  return null;
		}
	
	var r2sid = GetCookie('__utmb');
	
	var r2mr = document.referrer; 
	var r2mp = document.URL;
	var r2mhn = document.domain;
	var	r2mdt = document.title;
	var t='http://www.diamondgames.com/i/r2.gif?r2mr='+r2mr+'&r2mp='+r2mp+'&r2mhn='+r2mhn+'&r2sid='+r2sid+'&r2mdt='+encodeURIComponent(r2mdt);
  
  document.write('<img src="'+t+'" alt="" width="1" height="1"/>');
