$(function() {
	$("#googlemap-getdirections").click(function () {
		//alert($("#googlemap-postcode").val());
		var location = "directions.php?postcode=" + $("#googlemap-postcode").val();
		window.open(location,"warsopford-directions","menubar=no,location=no,width=700,height=500,toolbar=no,scrollbars=yes,resizable=false");
	});
});