/*--------------------------------------------------------------------------*/
/*  Digital Planning PHP Easy Counter ( Cookie version ) v1.0.0
 * 
 *  (c) 2007 Takahiro Tanaka
 *  
 *  Corporation Digital Planning
 *  http://digitalplanning.co.jp/
 *  
 *  2007/03/22 14:52
/*--------------------------------------------------------------------------*/
if( window.ActiveXObject && !window.XMLHttpRequest )
{
	window.XMLHttpRequest = function()
	{
		try
		{
			return ( new ActiveXObject( 'Msxml2.XMLHTTP' ) );
		}
		catch( e )
		{
		}
		
		try
		{
			return ( new ActiveXObject( 'Microsoft.XMLHTTP' ) );
		}
		catch( e )
		{
		}
		
		return( null );
	}
}



httpObj = new XMLHttpRequest();
httpObj.open( 'GET', 'c_count/count.php', true );
httpObj.onreadystatechange = function()
{
	if( httpObj.readyState == 4 && httpObj.status == 200 )
	{

	}
}
httpObj.send( null );
