function send_friend(){    var message_text=document.send_friend_form.message_text.value;
    var code=document.send_friend_form.code.value;
    var email=document.send_friend_form.email.value;
    var news_id=document.send_friend_form.news_id.value;

	if(!$('#email').val().valid('email')){		 $('#error').html('Неверный e-mail!');
		 return false;
	}
	$.post(
		'/', {
		action:'send_friend_news',
		js_arr:message_text+'::##::'+code+'::##::'+email+'::##::'+news_id
		 },

	function(resp){		if(resp=='success'){		 $('#error').html('');
		 $('#send_friend').hide();
         $('#send_msg').html('<div class="grey_block2">Ваше сообщение отправлено!</div>');
         $('.turing_img').attr('src','/pic_turing.php?'+Math.random());
	     document.send_friend_form.message_text.value='';
	     document.send_friend_form.code.value='';
		 document.send_friend_form.email.value='';

   	    }
	    else{	    	$('#error').html(resp);
	    }
	    $('.turing_img').attr('src','/pic_turing.php?'+Math.random());
	}
	)

}
