/*********************************
Author: Nick Bartlett
Function: GetDirections
Created: 04/25/2007
Parameters:
Description: open new window to google maps with directions to copperstone addition.  extra parameters on the window.open function such as window size will make it not work in ie. 
*********************************/
function GetDirections() {
	var Address = document.getElementById('address').value;
	var State = document.getElementById('state').value;
	var Zip = document.getElementById('zip').value;
	window.open ('http://maps.google.com/maps?saddr='+Address+'+'+State+'+'+Zip+'&daddr=union%20road%20and%2012th%20street+50613&hl=en&t=h');
}