function isPPC() 
{
	if (navigator.appVersion.indexOf("PPC") != -1) 
		return true;
	else 
		return false;
}
if(isPPC()) 
{
	document.write('<A HREF=\"mailto:\?subject\= ' + window.location + '\">SEITE VERSENDEN<\/A>');
}
else 
{ 
	document.write('<A HREF=\"mailto:\?body\= ' + window.location + '\">SEITE VERSENDEN<\/A>');
}
 
