function officeSelection()
{
	officeSelect = document.getElementById('worldwide-selector');
	$(".office").hide();
	$('#' + officeSelect.options[officeSelect.selectedIndex].value).show();

	$.get('/en/about/temsa-global/offices.aspx',{s:"Dellingstraat 32 2800 Mechelen"});
}
function goto(url,selectorId)
{
	window.document.location = url + "?s=" + document.getElementById(selectorId).options[document.getElementById(selectorId).selectedIndex].value;
}
