function getAjaxObject()
{
	var xmlHttp;
	try
	{	// Firefox, Opera 8+, Safari
		xmlHttp = new XMLHttpRequest();
		return xmlHttp;
	}
	catch (e)
	{
		try
		{
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
			return xmlHttp;
		}
		catch (e)
		{
			try
			{
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
				return xmlHttp;
			}
			catch (e)
			{
				alert("Tu navegador no soporta AJAX");
				return false;
			}
		}
	}
}

function contador(idFoto){
	var ajax=getAjaxObject();
	ajax.open("GET", "incrementarContador.asp?idFoto=" + idFoto, true);
	ajax.onreadystatechange=function() 
	{
		if (ajax.readyState==4) {
			if (ajax.status==200)
			{
				//alert("Ok");
			}
			else
			{
				alert(ajax.statusText)	
			}
		}
	}
	ajax.send("");
}