CAPTCHA = {}

CAPTCHA.addCaptcha = function(container) {						
	new Ajax.Request('/captcha_load.cfm',
	  {
		method: 'get',
		onSuccess: function(transport){
			var response = transport.responseText || "no response text";
			$(container).update(response); 
		},
		onFailure: function(){  alert('There was an error while trying to generate your captcha image'); }
	  });
}


