// Ajax comment alternative for the mofosex.com

function getXMLHTTPRequest() {
try {
req = new XMLHttpRequest();
} catch(err1) {
  try {
  req = new ActiveXObject("Msxml2.XMLHTTP");
  } catch (err2) {
    try {
    req = new ActiveXObject("Microsoft.XMLHTTP");
    } catch (err3) {
      req = false;
    } 
  } 
}
return req;
}

var commenthttp = getXMLHTTPRequest();
function getComments() {
  commenthttp.open("GET", comment, true);
  commenthttp.onreadystatechange = useHttpResponse3;
  commenthttp.send(null);
}

function useHttpResponse3() {
   if (commenthttp.readyState == 4) {
    if(commenthttp.status == 200) { 
      var commentresponse = commenthttp.responseText;
      document.getElementById('commentsarea').innerHTML = commentresponse;
    }
  } else {
  document.getElementById('commentsarea').innerHTML = '<div align="center"><img style="margin-top: 10px;" src="http://www.mofosex.com/images/related-loading.gif"></div>';
  }
}