function reloadCaptcha() {
	if(typeof $('captchaImage')!="undefined") {
		$('captchaImage').src = '/images/captcha_' + Math.round(Math.random()*1000000) + '.gif';
	} else {
		alert('Captcha Image not found!');
	}
}