function checkField(data, div_name, type) {
  var xmlhttp=false; 
  try {
    xmlhttp = new ActiveXObject('Msxml2.XMLHTTP'); 
  } catch (e) {
    try {
      xmlhttp = new
      ActiveXObject('Microsoft.XMLHTTP');
    } catch (E) {
      xmlhttp = false;
    }
  }
  if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
    xmlhttp = new XMLHttpRequest(); 
  }
  var url = 'http://bizdnes.com/inc/validate.php?type=' + type + '&query=' + data; 
  xmlhttp.open('GET', url, true); 
  xmlhttp.onreadystatechange=function() { 
    if (xmlhttp.readyState==4) { 
      var content = xmlhttp.responseText;
      if( content ){
		  document.getElementById('' + div_name + '').innerHTML = content; 
        }
     }
  }
  xmlhttp.send(null) 
  return;
} 





function getOfferNumber(data, id_field){
  document.getElementById('' + id_field + '').value = ''; 
  var xmlhttp=false; 
  try {
    xmlhttp = new ActiveXObject('Msxml2.XMLHTTP'); 
  } catch (e) {
    try {
      xmlhttp = new
      ActiveXObject('Microsoft.XMLHTTP');
    } catch (E) {
      xmlhttp = false;
    }
  }
  if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
    xmlhttp = new XMLHttpRequest(); 
  }
  var url = 'inc/genoffernumber.php?type=' + data; 
  xmlhttp.open('GET', url, true); 
  xmlhttp.onreadystatechange=function() { 
    if (xmlhttp.readyState==4) { 
      var content = xmlhttp.responseText;
      if( content ){
		  document.getElementById('' + id_field + '').value = content; 
        }
     }
  }
  xmlhttp.send(null) 
  return;
} 

