var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
function atlas_DoFSCommand(command, args)
{
	var myFlashObj = InternetExplorer ? atlas : document.atlas;
	var placeholder_name = $('#spot_placeholder').text();
	if(command == 'city_name')
		$("#"+placeholder_name).val(args);
	if(command == 'city_id')
		$("#code_"+placeholder_name).val(args);
	$("#atlas_box").hide();
}


