// JavaScript Document
function hacerPedido2(noti) {
	xmlhttp = obtenerXHR();
	xmlhttp.open("POST","nl/actual/"+noti,true, "", "");  
	xmlhttp.onreadystatechange = procesarPedido2;
	xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	xmlhttp.send("");
}
function procesarPedido2() {	
	  if (xmlhttp.readyState==4 && xmlhttp.status==200) {
		document.getElementById("nl").innerHTML=xmlhttp.responseText;
		}
}
