/*
Get Directions - Copyright (c) David Smyth 2005
Get directions is a function that links with MSN Maps to provide site visitors directions.

For more information or to create a more details version of this script, see http://www.microsoft.com/mappoint/msnmaps/mws_linking_en_uk.mspx#E3AAC

*/

function getDirections() {
	if (document.form1.postcode.value == ""){
		alert("Please enter a postcode");
	}else{
		var URL = 'http://maps.msn.co.uk/directionsFind.aspx?';

		var origZipc = document.form1.postcode.value;
		var destStrr = "";
		var destCity = "Haslemere";
		var destZip = "GU27 2HR";
	
		var directions = URL + 
						'zipc1=' + origZipc + '&' +
						'strt2=' + destStrr + '&' +
						'city2=' + destCity + '&' +
						'zipc2=' + destZip;	
	
		var directions = window.open(directions,
							   '',
							   'scrollbars=yes, menubar=no, height=600, width=800,resizable=yes,toolbar=no,location=no,status=no');
	}
}
