function onLoadGooglemap(widget)
{
	widget.gmap.addControl(new GLargeMapControl());
}

function onLoadForm(widget)
{
	widget.addEventListener("beforeForm", function()
	{
		if (getCookie("voted"))
			widget.showStatistics();
		return !getCookie("voted");
	});
	
	widget.addEventListener("submitted", function()
	{
		setCookie("voted", true, 365);
		widget.showStatistics();
	});
}