var commentxmlhttp=false;
/*@cc_on @*/
/*@if (@_jscript_version >= 5) try {
   commentxmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
   } catch (e) {
   try {
   commentxmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
   } catch (E) {
   commentxmlhttp = false;
   }
}
@end @*/
if (!commentxmlhttp && typeof XMLHttpRequest != 'undefined') {
   commentxmlhttp = new XMLHttpRequest();
}
function getCommentEdit(serverPage, DivID) {
   //
   // If in mid-process, abort:
   //
   if(commentxmlhttp.readyState!=4 && commentxmlhttp.readyState!=0){
      commentxmlhttp.abort();
   }
   var obj = document.getElementById(DivID);
   var newTxt='<p>LoAding...</p>';
   obj.innerHTML=newTxt;
   commentxmlhttp.open("GET", serverPage, true);
   commentxmlhttp.onreadystatechange = function() {
      if (commentxmlhttp.readyState == 4 && commentxmlhttp.status == 200) {
         obj.innerHTML = commentxmlhttp.responseText;
      }
   }
   commentxmlhttp.send(null);
}

