// JavaScript Document
function bookmark(){
	if(navigator.appVersion.indexOf('Mac') != -1)
		alert('Press Apple+D to bookmark this site.');
	else if (navigator.userAgent.indexOf("MSIE") != -1)
		window.external.AddFavorite('http://www.multiplestreamsofwellness.com','Organic Products for People, Planet and Pets');
	else
		alert('Please press Control+D to bookmark this site.');
}