function removeGeoTag(GeoTagLinkId)
{
	new Ajax.Request(urlbase + '/cfc/Tags.cfc', 
		{
			method: 'post',
			parameters: { method: 'removeGeoTag', GeoTagLinkId: GeoTagLinkId, FormatType: 'image' },
			onComplete: function(transport)
				{
					$('GeoTags').innerHTML = transport.responseText;
					$('GeoTagEntryBox').value = '';
					$('GeoTagEntryBox').focus();
				}
		});
}
