//Defines bookmark/favourite details and messeges for different browsers

var bookmarkurl="http://www.naturalhealingproducts.co.uk";
var bookmarktitle="Cryogel 4 U";

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle);

else if (window.sidebar) 
        alert('This feature only works for Internet Explorer, use Control+D to bookmark Natural Healing Products');
        
else if( window.opera && window.print ) 
        alert('This feature only works for Internet Explorer, use Control+T to bookmark Natural Healing Products');
}


//the end