var companyHttp;
var companyXML;

function getXmlHttpObject()
{
    var _http=null;
    try
    {
      // Firefox, Opera 8.0+, Safari
      _http=new XMLHttpRequest();
    }
    catch (e)
    {
      // Internet Explorer
      try
      {
		 _http=new ActiveXObject("Microsoft.XMLHTTP");
         
      }
      catch (e)
      {
        _http=new ActiveXObject("Msxml2.XMLHTTP");
      }
    }
    if(_http==null){
        alert("Ajax is Not Supported");
    }
    return _http;
}

function sendFranEnquiry(){
	/*currentPageID=pageID
    currentCategoryID=categoryID;
	currentSubCategoryID=subCategoryID;*/
	var url="/forms/SubmitFranEnquiry.aspx";
	var params = "firstName="+document.getElementById("first_name").value;
	params+="&lastName="+document.getElementById("last_name").value;
	params+="&email="+document.getElementById("email").value;
	params+="&closestArea="+document.getElementById("closest_store").value;
	params+="&contactMsg="+document.getElementById("contact_msg").value;
	
	companyHttp=getXmlHttpObject();
	try{	
		companyHttp.open("POST",url);
		//companyHttp.open("GET",url+"?search="+searchString+"&pageID="+pageID,true);
		//Send the proper header information along with the request
		companyHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
		companyHttp.setRequestHeader("Content-length", params.length);
		companyHttp.setRequestHeader("Connection", "close");
		companyHttp.onreadystatechange=confirmation;
	 }
	 catch(e){
		 alert("HTTP Init error:"+e);
	 }
	 
	// alert("Send");
	if( window.ActiveXObject && /Win/.test(navigator.userAgent) ) { 
	  try{
		companyHttp.async=true;
		companyHttp.send(params);
		document.getElementById("franchise_enquiry").innerHTML="<h2 class='white'>Franchise Enquiry Form</h2><div class='success_msg'><h3>Gidday!!</h3><p>Thanks for registering your interest to be a Super Liquor franchisee. A member of our Franchisee team will be in contact with you within the next few days to discuss this opportunity with you further.</p></div><p class='btn'><a id='btn_msg_back' href='' class='btn'>back</a></p>";
		}
		catch(e){
			alert("SEND ERROR");
		}
	}else{
		companyHttp.async=true;
		companyHttp.send(params);
		document.getElementById("franchise_enquiry").innerHTML="<h2 class='white'>Franchise Enquiry Form</h2><div class='success_msg'><h3>Gidday!!</h3><p>Thanks for registering your interest to be a Super Liquor franchisee. A member of our Franchisee team will be in contact with you within the next few days to discuss this opportunity with you further.</p></div><p class='btn'><a id='btn_msg_back' href='' class='btn'>back</a></p>";
//		companyHttp.send(document.location.href+"?name=1");
	}
	return false;
}

function confirmation(){
	
	//reg_form_wrap.innerHTML="hey man";
	//alert('chur');
}