var arrayXmlHTTPLoteria = new Array();
var arrayUrlDataLoteria = new Array();

function funcioInicialLoteria(pos,idDivTarget){
		try {
			arrayXmlHTTPLoteria[0]=new XMLHttpRequest();
		}
		catch (e) {
			try {
					arrayXmlHTTPLoteria[0]=new ActiveXObject("Msxml2.XMLHTTP");
			}
			catch (e) {
					arrayXmlHTTPLoteria[0]=new ActiveXObject("Microsoft.XMLHTTP");
			}
		}
		if (arrayXmlHTTPLoteria[0] == null) {
			alert ("Aquest navegador no accepta AJAX");
		}
		else {
				arrayUrlDataLoteria[pos] = 'http://www.324.cat/pnoticies/1024LoteriaAJAX.jsp?seccio=notloteria';
				arrayXmlHTTPLoteria[pos].onreadystatechange = 	Function("canviEstatCarregaLoteria("+pos+",'"+idDivTarget+"')");
				arrayXmlHTTPLoteria[pos].open("GET",arrayUrlDataLoteria[pos],true);
				arrayXmlHTTPLoteria[pos].send(null);
		}
}

function canviEstatCarregaLoteria(pos,idDivTarget) {
	if (arrayXmlHTTPLoteria[pos].readyState == 4) {
		if(arrayXmlHTTPLoteria[pos].responseText != undefined && arrayXmlHTTPLoteria[pos].responseText){
			pintaDadesLoteria(pos,idDivTarget,arrayXmlHTTPLoteria[pos].responseText);
		}
	}
}

function pintaDadesLoteria(pos,idDivTarget, valor) {
	document.getElementById(idDivTarget).innerHTML = valor;
}

