// 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.iqsupplement.com','SeaLogix Fish Oil Information');
	else
		alert('Please press Control+D to bookmark this site.');
}