function isPPC()
{
	if (navigator.appVersion.indexOf("PPC") != -1) return true;
	else return false;
}

function sendPage()
{
	if(isPPC())
	{
		this.location.href = "mailto:\?subject\=" + document.title + "?body=Bilje i zdravlje': " + window.location;
	}
	else
	{
		this.location.href = "mailto:\?body=Bilje i zdravlje: " + window.location;
	}
}
