function rascredit(addr,divid,showprogres)
{
var ldText="<table width='100%' cellpadding='0' cellspacing='0' border='0' margin-top: 24px;'><tr><td align='right'><div align='center'><img src='/honda/4/include/images/loading.gif' width='31' height='31' border='0'></div></td></tr></table>";
 curTarget=divid;
 if(showprogres)
 ReplaceContent(divid,ldText);
 createRequest();
 request.onreadystatechange = process;
        request.open("GET", addr, true);
        request.send(null);
 //loadXMLDoc(addr);
}
