function addcomment(table,target){
	var text = document.getElementById('comment').value;
	new Ajax.Updater('commentbox','http://social-flirtnet.de/ajax',{ parameters: { mode: 'addcomment', table: table, target: target, text: text } });
	showhide('addcomment');
	document.getElementById('comment').value = '';
}

function remcomment(table,target,id){
	if(confirm("Sure?")){
		new Ajax.Request('http://social-flirtnet.de/ajax', { parameters: { mode: 'remcomment', table: table, target: target, cid:id } });
		hide('comment'+id);
	}
}
