function send_comment()
{

	if(document.getElementById('INHALT').value == '') return false;
	var myData = 'INHALT='+document.getElementById('INHALT').value;
	myData += '&id='+document.getElementById('id').value;
	myData += '&GSAG='+document.getElementById('GSAG').value;
	$.ajax({
   type: "POST",
   url: "../custom/skripte/save_message.php",
   data: myData,
   success: function(msg){
		 location.href = location.href;
   }
 });
 return false; 
}

function send_message()
{
	var myData = 'INHALT='+document.getElementById('INHALT').value;
	myData += '&BETREFF='+document.getElementById('BETREFF').value;
	if (document.getElementById('ART'))
		myData += '&ART='+document.getElementById('ART').value;
	if (document.getElementById('KATEGORIE'))
		myData += '&KATEGORIE='+escape(document.getElementById('KATEGORIE').value);
	myData += '&GSAG='+document.getElementById('GSAG').value;
	$.ajax({
   type: "POST",
   url: "../custom/skripte/save_message.php",
   data: myData,
   success: function(msg){
//		 alert(msg);
		 window.location.reload();
   }
 });
 return false; 
}
