function flash_to_javascript(textfromflash){
	document.getElementById("infodivv").innerHTML = textfromflash;
	returntoflash = document.getElementById("infodivv").innerHTML;
	return(returntoflash);
}



function javascript_to_flash(texttoflash) {
	var textfromflash = thisMovie("swfmapa").asFunc(texttoflash);
	document.getElementById("infodivv").innerHTML = textfromflash;
	return(true);
}


function thisMovie(movieName) {
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	// return (isIE) ? window[movieName] : document[movieName];
	var ffobj = swfobject.getObjectById(movieName);
	return ffobj;
	
	
}





// pemitest

