$(document).ready(function() {
		$("#sub_web").click(function(){
				validateInquiryForm();						 
			}
		);
	$("#trialbutton").click(function(){
				validateInquiryForm();						 
			}
		);
	function validateInquiryForm(){
	
				if($("#first_name").val().length == 0 || $("#last_name").val().length == 0 || $("#company").val().length == 0 || $("#email").val().length == 0 || $("#phone").val().length == 0){
					$("#inqurymsg").html('<p>Please fill out the form completely.</p>');
				}
				else{
				                  $.ajax({
                           type: "GET",
                           url: '/salesforcesubmit.php',
                           dataType: 'json',
                           data: $('#webinar').serialize(),
                           success: function(j) {
                                if(j.success == 1){
									window.location = '/thankyou.php';	
								}
								else{
										$("#inqurymsg").html('Please fill out the form completely.');
								}
							}
						});
				}
				
	}
});

