/*
* --------------------------------------------------------------------------
*                                    NuclearBB
*                              (c) 2007 NuclearBB
* --------------------------------------------------------------------------
*  This program is free software; you can redistribute it and/or modify
*  it under the terms of the GNU General Public License as published by
*  the Free Software Foundation; either version 2 of the License, or
*  (at your option) any later version.
* --------------------------------------------------------------------------
*/

function get_new_captcha(current_captcha_id)
{
	new Ajax.Request('inc/ajax.php', {
		method: 'get',
		parameters: 'mode=new_captcha&current_captcha=' + current_captcha_id,
		onSuccess: function(transport)
		{
			$('captcha_id').value = transport.responseText;
			$('captcha_img').src = 'inc/show_captcha.php?id=' + transport.responseText;
		}
	});
}