function bulkemail()
{
	document.getElementById('part2').style.display='none';
	document.getElementById('loader').style.display='block';
	document.getElementById('topmsg').style.display='none';

	var nameis = document.getElementById('username').value;
	var mobileis = document.getElementById('usermobile').value;
var xmlHttp;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    try
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    catch (e)
      {
      alert("Your browser does not support AJAX!");
      return false;
      }
    }
  }
	xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==4)
      {
		var valueAll = xmlHttp.responseText;
		if(valueAll = 'SUCCESS'){
			document.getElementById('part2').innerHTML='<font class="style90" style="color:#0033FF">Your Request is Successfully Submitted to Sales Deptt. You will get A Call from us Shortly!</font>';
		}
		document.getElementById('loader').style.display='none';
		document.getElementById('part2').style.display='block';
      }
	}
  var url="bulkajax.php";
  url=url+"?name_is="+nameis;
  url=url+"&mobile="+mobileis;
//  xmlHttp.onreadystatechange=stateChanged;
  xmlHttp.open("GET",url,true);
  xmlHttp.send(null);
}

