function Lesezeichen() {
	title = document.title; 
	url = location.href;
	if (window.sidebar) { // Mozilla
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera
		return true; }
}

function tellafriend() {
	$.post("inc/schickeEmpfehlung.inc.php", 
		{ 
		'absender': document.getElementById('absender').value, 
		'empfaenger': document.getElementById('empfaenger').value, 
		'nachricht': document.getElementById('nachricht').value 
		}, 
		function(data){  }, 
	'json');
}