var map;
var gdir;
var geocoder = null;
var addressMarker;

function initialize() {
	if (GBrowserIsCompatible()) {      
		map = new GMap2(document.getElementById("map"));
		gdir = new GDirections(map, document.getElementById("directions"));
		
		setDirections("Bergen op Zoom, A58", "Eiland 4, 4528 KG Sint Kruis", "nl_NL");
	}
}

function setDirections(fromAddress, toAddress, locale) {
	gdir.load("from: " + fromAddress + " to: " + toAddress,
	{ "locale": locale });
}

function printDirections() {
	var fromAddress = $('fromAddress').value;
	var toAddress = $('toAddress').value;
	var url = 'http://maps.google.nl/maps?f=d&source=s_d&saddr='+fromAddress+'&daddr='+toAddress+'&hl=nl&pw=2';
	window.open(
		url,
		'Afdrukken',
		'width=790,height=600,scrollbars=yes,toolbar=yes,location=yes'
	);
	
}
