$(document).ready(
	function()
	{
		$(".jalema_mapconfigurator").click(function()
		{
			openMapconfigurator($(this).attr('href'));
			return false;
		});
	}
);

function openMapconfigurator(dealerid)
{
	var url = 'http://www.ontwerpjeeigenmap.nl/mapconfigurator/index.php';

	var newWindow = window.open('','flash','width=1008,height=600,scrollbars=yes');
	if (!newWindow) return false;

	var html = "";
	html += "<html><head></head><body><form id='mapconfigurator_form' method='post' action='" + url + "'>";
	html += "<input type='hidden' name='dealerid' value='" + dealerid + "'/>";
	html += "</form><script type='text/javascript'>document.getElementById(\"mapconfigurator_form\").submit()</script></body></html>";

	newWindow.document.write(html);
}
