function bookmarksite(bUrl){
	var txt = "Sorry, we cannot automatically bookmark the site for you."
	var url = bUrl;
	var who = "SiteBuilder Bespoke - Professional, Updateable Business Websites";
	var ver = navigator.appName;
	var num = parseInt(navigator.appVersion);
	
	if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
	   window.external.AddFavorite(url,who);
	}else{
	   alert(txt);
	} 
}

