	$(document).ready(function(){
							   $(".response").hide();
							   $(".wform").hide();
							   });
	
	function send(){
		$.ajax({
			type: "POST",
			url: "sendmail.php",
			data: 	"name=" + document.getElementById("name").value + 
					"&company=" + document.getElementById("company").value + 
					"&email=" + document.getElementById("email").value + 
					"&ip=" + document.getElementById("ip").value + 
					"&comments=" + document.getElementById("comments").value,
			success: function(html){
				$(".response").show();
				$(".response").html(html);
			}
		});
		
		}
		
		function showform(){
			$(".wform").show();
		}
