/* Browser bookmark script */
/* Date: 07/28/06 */

function bookmark(url, description) {
	netscape="Please click OK then press Ctrl+D to bookmark this site.";
	if (navigator.appName=='Microsoft Internet Explorer')
		{
			url="http://www.amcustomcarpentry.com/";
			description="A&M Custom Carpentry, Inc. - Custom Homes & Remodeling Since 1967";
			window.external.AddFavorite(url, description);
		}
		else if (navigator.appName=='Netscape')
		{
			alert(netscape);
		}
}