 
function TEXT_CODE_CHECK_captcha(mssig)
{   
   $('span#for_loading_span').hide();
 	$("#Resultreturnmsseg").show();	   
    $("#Resultreturnmsseg").html(mssig);//	
	if(mssig !='')
	{
	$('#captcha-form').css({ 
	border:'2px solid #9F1319'
	});
	}
	$('#captcha-form').val('');
	 document.getElementById('captcha').src='functions/captcha.php?'+Math.random();
    document.getElementById('captcha-form').focus();
	
 
}



