function validate(){
		var name = document.getElementById('Name').value;
		var email = document.getElementById('Email').value;
		var tel = document.getElementById('Telephone').value;
		var company = document.getElementById('Company').value;
		var msg = document.getElementById('Message').innerHTML;
		
		if(name == "" || name == "Name"){
			alert("Please Enter Your Name");
			return false;
		}
		if(company == "" || company == "Company"){
			alert("Please Enter Your Company Name");
			return false;
		}
		if(tel == "" || tel == "Telephone"){
			alert("Please Enter Your Telephone");
			return false;
		}
					
		if(msg == ""){
			alert("Please Enter Your Comments");
			return false;
		}
		if(email == "" || email == "Email"){
			alert("Please Enter Your Email");
			return false;
		}
		else{
			document.contact_form.submit();
		}
}

function ContactForm(){
	var name = document.getElementById('Name').value;
	var email = document.getElementById('Email').value;
	var tel = document.getElementById('Telephone').value;
	var company = document.getElementById('Company').value;
	var msg = document.getElementById('Message').innerHTML;

	if (window.XMLHttpRequest)
	{// code for IE7+, Firefox, Chrome, Opera, Safari
	  xmlhttp=new XMLHttpRequest();
	}
	else
	  {// code for IE6, IE5
	  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	  }
	xmlhttp.onreadystatechange=function()
	  {
	  if (xmlhttp.readyState==4 && xmlhttp.status==200)
		{
			//alert(xmlhttp.responseText);
			if(xmlhttp.responseText == 1){
				alert("Email sent!");
			}else{
				alert("Email Not sent!");
			}
			
		}
	  }
	xmlhttp.open("GET","http://www.hannalawoffice.com.php5-20.dfw1-1.websitetestlink.com/wp-content/themes/hannatheme/contact_form.php?name="+name+"&email="+email+"&tel="+tel+"&company="+company+"&msg="+msg,true);
	
	xmlhttp.send(null);
}

function confirmPayment(){
	if($('#iagree').attr('checked')){
		$.fancybox.close();
		//window.open('http://www.paperstreet.com/','_blank');
	}else{
		alert("Please Select the Checkbox Before Proceeding.");
	}
}


function confirmPayment2(){
	if($('#iagree2').attr('checked')){
		window.location.href = '/';
		return false;
		//window.open('http://www.paperstreet.com/','_blank');
	}else{
		alert("Please Select the Checkbox Before Proceeding.");
	}
}

function confirmPayment3(){
	if($('#iagree3').attr('checked')){
		window.location.href = '/?page_id=240';
		return false;
		//window.open('http://www.paperstreet.com/','_blank');
	}else{
		alert("Please Select the Checkbox Before Proceeding.");
	}
}

function confirmPayment4(){
	if($('#iagree4').attr('checked')){
		window.location.href="https://www.payontheweb.com/payweb/Login.aspx?pCode=FJH";
		return false;
		//window.open('http://www.paperstreet.com/','_blank');
	}else{
		alert("Please Select the Checkbox Before Proceeding.");
	}
}
