<!--
function FB_checkCaptcha(captchaCode){
	var feedback = $.ajax({
					type: "GET",
					url: "/Janus2005/securimage/process.php",
					data: "code="+captchaCode.value,
					async: false					
				}).responseText;
	
	if(feedback == "OK") return true
	else{
		FB_reloadCaptcha("captcha", "securimage/securimage_show.php");
		captchaCode.value = "";
		return false;
	}

	return false;
}

function FB_reloadCaptcha(captchaImg, captchaPage){
	document.getElementById(captchaImg).src = captchaPage+"?"+Math.random();
	return true;
}
//-->
