﻿function AddFavourite(title, url)
{
	if (window.sidebar)
	{
		// Mozilla Firefox Bookmark
		window.sidebar.addPanel(unescape(title), unescape(url), '');
	}
	else if( window.opera && window.print )
	{
		var mbm = document.createElement('a');
		mbm.setAttribute('rel','sidebar');
		mbm.setAttribute('href',unescape(url));
		mbm.setAttribute('title',unescape(title));
		mbm.click();
    }
	else if( window.external )
	{
		// IE Favorite
		window.external.AddFavorite(unescape(url), unescape(title));
	}
	else
	{
		alert("Sorry adding a bookmark is not supported on this browser. You will have to add the bookmark/favourite manually.");
	}
};