function flyergd(nFt)
{
var oHTTPRequest = createXMLHTTP(); 

oHTTPRequest.open("post", "http://www.bombadas.com/Agenda/flyergd.asp", true);
oHTTPRequest.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
oHTTPRequest.onreadystatechange=function() {
if (oHTTPRequest.readyState==4){
document.getElementById('fotogrande').innerHTML = oHTTPRequest.responseText;
}
}
oHTTPRequest.send("cFt=" + nFt);
}
