function linkZip(uid)
{
	var url = '../ajaxhandlers/zip.php';
	var params = 'id=' + encodeURIComponent(uid);
	new Ajax.Request(url, {
	  method: 'post',
	  parameters: params,
	  onSuccess: function(transport) {
		new Effect.Highlight('zipFile');
		$('zipFile').innerHTML = "<h3><a href='" + transport.responseText + "'>Download all full size images as a zip file</a></h3>";
	  },
	  onCreate: function(){
		$('zipFile').innerHTML = "<h3>Building Zip File...</h3><p>(This could take a few minutes, be patient. A link will show up when it's done)</p> <img src='img/ajax-loader.gif'>";
	}
	});
}
