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