function get_ms_sbox_msg(ms_sbox_path)
{

	
	jQuery.ajax({
   type: "POST",
   url: ms_sbox_path+"/ms-shoutbox-view.php",
   data: "ms_sbox_show_msg=1",
   success: function(msg){
	jQuery("#ms_sbox_msgs_div").html(msg);
   }
 });

}

function get_ms_send_msg(ms_sbox_path, now_user)
{
	   if(now_user=="")
	   {
			jQuery("#ms_sbox_login_div").show();
			jQuery("#ms_sbox_label_spn").html("");
			return false;
	   }

	val=jQuery("#ms_sbox_msg").val();
	jQuery("#ms_sbox_label_spn").html("submitting...");
	
	if(val!='')
	{
		jQuery.ajax({
		   type: "POST",
		   url: ms_sbox_path+"/ms-shoutbox-view.php",
		   data: "ms_sbox_submit_msg="+val,
		   success: function(msg){
		   if(msg=="need_login")
		   {
				jQuery("#ms_sbox_login_div").show();
				jQuery("#ms_sbox_label_spn").html("");
		   }
		   else
		   {
			get_ms_sbox_msg(ms_sbox_path);
			jQuery("#ms_sbox_label_spn").html("");
			jQuery("#ms_sbox_msg").val("");
			jQuery("#ms_sbox_msg").focus();
			}
		   }
		 });
	}

	return false;
}

