function AddBookmark()
{
	if (window.external) 
	{
		//ie
		window.external.AddFavorite(location.href, document.title);
	}
	else
	{
		alert("Sorry, your browser doesn’t support this feature.");
	}	
	
}