function nuevoAjax(){
	var xmlhttp=false;
	try{
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	}catch(e){
		try {
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		}catch(E){
			xmlhttp = false;
		}
	}

	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	}
	
	return xmlhttp;
}

function muestraG(id,cod){

resul = document.getElementById(cod);
resul.src="pinta.php?id="+id;

}
function muestraG(id,cod,d){

resul = document.getElementById(cod);
resul.src="pinta.php?id="+id;

desc= document.getElementById(cod+"_desc");
if (desc!=null){
desc.innerHTML=d;
}
}function mostrar(id){var not=document.getElementById(id);if (not.style.display=='none'){not.style.display='block';}else{not.style.display='none';}}

function obtieneBono(id){
var ajax=nuevoAjax();

ajax.open("POST", "bono.php",true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			document.getElementById(id).innerHTML = ajax.responseText;
		}
	}
	ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	ajax.send("ticker="+id);
	
	


}
