
function bookmark(theURL){
	
	if (window.sidebar) // firefox
		{
		alert("Press CTRL+D to bookamrk this page!");
	}

	else (document.all) // ie
		{
		thePage = document.title;
		window.external.AddFavorite(theURL, thePage);
	}
}