
/***********************************************
* Bookmark site script- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/



function bookmarksite(title,url)
{ 
	if (window.sidebar) // firefox
	{
		window.sidebar.addPanel(title, url, "");
	}
	else if (window.external) // ie
	{ 
		window.external.AddFavorite(url, title)   
	} 
	else
	{ 
		alert("Sorry! Your browser doesn't support this function. Please use the bookmark option in your browser instead."); 
	} 
}