	// JavaScript Document
	function getFlashMovie(movieName) 
	{   
		return (window[movieName]) ? window[movieName] : document[movieName];
	}
	
	function getmapdata(dbname,recordid)
	{
		//spinner
		//$("#mapdata").html("<div style=\"padding-top:100px;padding-left:220px;\"><img src=\"abendago/images/loadingAnimation.gif\"></div>");

		//call funciton in flash that selects the marker with the id specified
		getFlashMovie('swfFile').selectMarker(recordid);

		//jQUery safe
		$.ajax({
		  url: '_customelements/_actions/presentmapdata.php?strDatabase='+dbname+"&nRecordID="+recordid,
		  cache: false,
		  success: function(html){
			$("#mapdata").html(html);
		  }
		});
	}
