function ShoutBox_send () {
	$.ajax({
		type: "POST",
		url: "ShoutBox.php",
		data: "ShoutComment="+$('#ShoutComment').val()+"&ShoutSubmit=ShoutPost&without_interface=1",
		success: function (data) {
			SBcontent = data;
			if(SBiedom){
				SBcross_marquee=document.getElementById? document.getElementById("SBiemarquee") : document.all.SBiemarquee;
				SBcross_marquee.style.top=parseInt(SBheight)+8+"px";
				SBcross_marquee.innerHTML=SBcontent;
				SBactualheight=SBcross_marquee.offsetHeight;
			}else{
				SBns_marquee=document.SBns_marquee.document.SBns_marquee2;
				SBns_marquee.top=parseInt(SBheight)+8;
				SBns_marquee.document.write(SBcontent);
				SBns_marquee.document.close();
				SBactualheight=SBns_marquee.document.height;
			}
			$('#ShoutComment').val('');
		}
	});
}
