window.onload = whois;

function xhr(j,k){var w=window,r=w.XMLHttpRequest?new XMLHttpRequest():(w.ActiveXObject?new ActiveXObject('Microsoft.XMLHTTP'):0)
if(r){r.onreadystatechange=function(){r.readyState==4?k(r.responseText,r.responseXML):0}
r.open('GET',j,!0)
r.send()}}



function whois(){
 var x = document.getElementById('q_ip');
 if (x){
  xhr('ajax_whois.php?qip='+x.firstChild.nodeValue, function(text){insert_woi(text)})
}
}

  // xhr('ajax_whois.php?q=123.122.31.33', function(text){insert_woi(text)})
  
 function insert_woi(text)
 {
 var div = document.getElementById('ip');
div.innerHTML = text;

 }

