function getResponse(theurl,target,shall) {
  if(!shall){
  	target.innerHTML='<img src=http://www.tweetcatch.com/images/busy.gif>';
  	}
  AjaxRequest.get(
    {
      'url':theurl
      ,'onSuccess':function(req){ target.innerHTML=req.responseText; }
    }
  );
}
