var select_place = false;

$(document).ready(function()
{
	// Initialize map //
	var data = evalJson($('#flashmap').attr('class'));

	if (data != 'undefined')
	{
		var map_width = ($('#map_width').size() == 1)? $('#map_width').val() : 430;
		var map_height = ($('#map_height').size() == 1)? $('#map_height').val() : 225;

		try
		{
			$('#flashmap').flash({
				swf:'/imgs/flash/map.swf',
				width:map_width,
				height:map_height,
				flashVersion: 9,
				flashvars:
				{
					Latitud: data.geopoint.lat,
					Longitud: data.geopoint.lng,
					key: data.apikey,
					language: data.lang,
					FechaHora: data.date_ini,
					Kml: data.kml,
					Url: data.link,
					Nombre: data.title,
					Lugar: data.location,
					browser: data.browser,
					target: '_self'
				},
				params:{allowFullScreen:true}
			});
		}
		catch(e){}
	}
});

