function bookmarksite()
{
		//Get title, url
		title = window.document.title;
		url = window.document.location;

		if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4))
		//if(document.all)// ie
			window.external.AddFavorite(url,title);
		else 
    		alert("Press CTRL-D (Firefox) or COMMAND-D (Safari[MAC OS X]) to bookmark this page");
}

