/*
	send email
*/
function isPPC() {
	if (navigator.appVersion.indexOf("PPC") != -1) return true;
	else return false;
}
/*
	send page to friend
*/
function sendPage(pageTitle){
	if (pageTitle == null) {
		pageTitle = "Allit.de";
	}

	var webloc = window.location;	
	
	if(isPPC()) {
		this.location.href = "mailto:\?subject\=" + document.title + "?body="+pageTitle+": " + webloc;
	}else { 
		this.location.href = "mailto:\?body=Allit.de:" + webloc;
	}
}

