<!--

	function spy(url, dom)
	{
			
		with ( document )
		{
			 		
			write("<img src='" + url);
			
			if ( url.indexOf("?") == -1 )
				write("?");
			else 
				write("&");
			
			write("scrW="   + screen.width      + "&");
			write("scrH="   + screen.height     + "&");
			write("scrC="   + screen.colorDepth + "&");
			write("domain=" + dom                    );
			
			write("' width=0 height=0 border=0/>");
					
		}
		
	}
	
//-->

