function CreateBookmarkLink()
{
	title = document.title;
	url = document.location;

	if (window.sidebar)
	{
		window.sidebar.addPanel(title, url, "");
	}
	else if (window.external)
	{
		window.external.AddFavorite(url, title);
	}
	/*else if (window.opera && window.print)
	{
		var mbm = document.createElement('a');
		mbm.setAttribute('rel', 'sidebar');
		mbm.setAttribute('href', url);
		mbm.setAttribute('title', title);
		mbm.click();
	}*/
	else
	{
		alert('Bookmark function not supported in your browser.\n\nPlease bookmark through your browser manually.');
	}
}