var CAPTCHA =
{
	imageURL : '',
	reload : function(input)
	{
		input.setAttribute('src', this.buildCaptchaImageURL())
	},
	buildCaptchaImageURL : function()
	{
		return this.imageURL.replace(new RegExp('amp;', 'g'), '') + '&rnd=' + Math.random();
	}
}