function onLoadLocations(widget)
{
	var map = widget.gmap;
	map.addControl(new GLargeMapControl());
	map.setMapType(G_PHYSICAL_MAP);
}

function onLoadForm(widget)
{
	widget.addEventListener("submitted", function()
			{
				widget.showForm();
				if (!widget.form.confirmResults)
				{
					alert("Uw bericht is succesvol verstuurd.");
				}
				else
				{
					alert("Uw bericht is succesvol verstuurd.");
					//alert("Uw bericht is succesvol geplaatst, het kan echter even duren voordat deze zichtbaar is");
				}
			});
}


