getFile = function(url, id) {
	url += "?" + (new Date()) .getTime() ;
	new Ajax.Updater({success: id},
		url, {
			method: 'get',
			onComplete: end,
			onFailure: error
		});
	return false;
};
end = function() {};
error = function() {};