var lcId = new Date().getTime();
var flashProxy = new FlashProxy(lcId, "typo3conf/ext/ke_flashmap/flash/JavaScriptFlashGateway.swf");

function selectArea(n) {
	flashProxy.call("selectAreaFromJavascript", n);
}

function selectTopic (n) {
	flashProxy.call("selectTopicFromJavascript", n);
}

function selectAreaAndTopic (c,t) {
	flashProxy.call("selectAreaAndTopicFromJavascript", c , t);
}

function selectCountryDropDown(n) {
	document.forms['filter'].elements["tx_kecrcs_pi1[country]"].value = n;
	linkToCountryPortrait(document.forms['filter'].elements["tx_kecrcs_pi1[country]"].value);
}

function setInitialAreaAndTopic() {

	var obj = document.forms["filter"].elements["tx_kecrcs_pi1[topic]"];
	var topic;
	for (var i=0; i < obj.length; i++) {
		if (obj[i].checked) topic=obj[i].value;
	}
	flashProxy.call("selectAreaAndTopicFromJavascript",
		document.forms['filter'].elements["tx_kecrcs_pi1[country]"].value,
		topic);
}
