//(c) rd3.cr
// Code Marco Chacón
function getOb(){var xmlHttp;try{xmlHttp=new XMLHttpRequest();}catch (e) {try  {xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}catch (e) {try {xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}catch (e) {alert("Your browser does not support AJAX!");}}}return(xmlHttp);}
function getDiv(url,myDiv,tptext){
document.getElementById(myDiv).innerHTML=tptext;
var xmlHttp=getOb();xmlHttp.onreadystatechange=function(){
document.getElementById(myDiv).innerHTML=(xmlHttp.responseText);
setImage();
}xmlHttp.open("GET",url,true);xmlHttp.send(null);}