function BindXMLRpc(xmlStr,fileName){
  var xmlhttp              = new ActiveXObject("MSXML2.XMLHTTP");
  xmlhttp.Open("post",fileName,false);
  xmlhttp.send(xmlStr); 
  return xmlhttp.responseText;
}
