PageLoadPortfolio();

function getHTTPObject()
{
	var xmlhttp;
	if (!xmlhttp && typeof XMLHttpRequest != 'undefined')
	{
		try {xmlhttp = new XMLHttpRequest();} catch (e) {xmlhttp = false;}
	}
	
	if(!xmlhttp && typeof ActiveXObject != "undefined")
	{
		try
		{
			xmlhttp=new ActiveXObject("MSXML2.XMLHTTP");
		}
		catch(e)
		{
			xmlhttp=false;
		}
		
		if(!xmlhttp)
		{
			try
			{
				xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch(e)
			{
				xmlhttp=false;
			}
		}
	}
	return xmlhttp;
}

function PageLoadPortfolio()
{
	var xmlHttp = getHTTPObject();
	var url="http://www.kic.co.in/counter.php";
	xmlHttp.open("GET",url,false);
	xmlHttp.send(null);

	if (xmlHttp.readyState == 4)
	{	
		results = xmlHttp.responseText;

		document.getElementById("Counter").style.display="block";
		document.getElementById("Counter").innerHTML = "";
		document.getElementById("Counter").innerHTML = results;
	}
}
