function getDirections(theForm) {
  if (theForm.street == null) {
        alert("Please enter your street");
  } else {
        url = "http://local.google.com/maps?li=d&q=";
        url = url + "from:" + theForm.street.value + "+" + theForm.city.value + ",+" + theForm.state.value + "+" + theForm.zip.value + "+to:+3875+St-Urbain,+Montreal,+Quebec,+H2W+1V1";

		window.open(url,"test","width=780,height=494,,toolbar=no,status=no,scrollbars=no,resizable=no,location=no,menubar=no");
		win.window.focus();
  }


}


                    
