function sendit()
{
	if (typeof(sendit.arguments[0]) == 'undefined') var myuser = 'matthias.kundy';
	else var myuser = sendit.arguments[0];
	if (typeof(sendit.arguments[1]) == 'undefined') var myhost = 'nationalparkamt.de';
	else var myhost = sendit.arguments[1];
	(typeof(sendit.arguments[2]) == 'undefined') ? document.location.href = 'mailto:'+myuser+'@'+myhost : document.location.href = 'mailto:'+myuser+'@'+myhost+'?subject='+escape(sendit.arguments[2]);
}