function reload_captcha(oSrc)
{
	var oForm = $(oSrc).parents("form");
	var theport = '';
	if (document.location.port != '')
		theport = ':' + document.location.port;
	$.get('http://'+document.location.hostname+theport+'/CustomTags/argus/clients.cfc?method=getRandomWord&rand='+Math.random(), 
			function (data) 
			{
				var randomWord = data.replace(/(^.*\<string\>)|(\<\/string\>.*$)/g, '');
				oForm.find("#captchaImg").attr("src",'http://'+document.location.hostname+theport+'/include/captcha.cfm?w='+randomWord);
				oForm.find("#captchaImgF").attr("src",'http://'+document.location.hostname+theport+'/include/captcha.cfm?w='+randomWord);
				oForm.find("#captcha").attr("value",randomWord);
				oForm.find("#captchaF").attr("value",randomWord);
			});
	return true;
}
