function findCaptcha() {
	
	$(".Captcha").attr('src', './libs/captcha/captcha.php?' + Math.random());
	$(".ReloadCaptcha").bind('click', function(e) {
		e.preventDefault();
		$(".Captcha").attr('src', './libs/captcha/captcha.php?' + Math.random()).focus();
	});
	
}


