﻿function googlemap(address)
{
	MyUrl="/lib/googlemap/GoogleMap.php?trash="+(new Date()).getTime();
	quest="&address="+address;
	$.ajax
	({
		url:MyUrl,
		type:'POST',
		data:quest,
		success: function(result)
		{
			if(document.getElementById("MyGoogle"))
			{
				$('#MyGoogle').html(result);
			}
			else
			{
				var temp = '<span id="MyGoogle" class="flora"></span>';
				$('body').append(temp);
				$('#MyGoogle').html(result);
			}
			$('#MyGoogle').dialog(
			{
				width:620,
				height:560,
				maxWidth:800,
				maxHeight:600,
				minHeight:200,
				minWidth:150,
				hide:'slow',
				title:address,
				modal:true,
				draggable:false,
				overlay: { 
				opacity: 0.5,
				background: "black"
				}
			});
		}
	});
}

