
function bookmark(url, who){

	url = "http://www.dalailama.com/"+url;
	if (!who) var who = "The Website of The Office of His Holiness the 14th Dalai Lama";

	var ver = navigator.appName
	var num = parseInt(navigator.appVersion)
	if ((navigator.platform.indexOf("Win32") != -1) && (ver == "Microsoft Internet Explorer") && (num >= 4)) 
	{
   		window.external.AddFavorite(url,who);
	}
	else if (navigator.platform=="MacPPC" || navigator.platform=="Mac68K")
	{
		alert("Press Command and D together to bookmark this page.");
	}
	else
	{
   		alert("Press Control and D together to bookmark this page.");
	} 
}
