function BookmarkUs() {
		if ( (navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4) && (navigator.userAgent.toLowerCase().indexOf("win") != -1) ) 
		{ //IE
			window.external.AddFavorite(document.URL, document.title);
		} 
		else 
		{// Other Browsers
			alert("To bookmark this page \nPlease click the 'OK' button \nthen Press CTRL-D on your keyboard.");
		}
		return false;
}

function SetHomePage() {
		if ( (navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4) && (navigator.userAgent.toLowerCase().indexOf("win") != -1) ) 
		{ //IE
			//window.external.AddFavorite(document.URL, document.title);
			this.style.behavior = 'url(#default#homepage)'; 
			this.setHomePage(document.URL); 
			return false;
		} 
		else 
		{// Other Browsers
			alert("You must set your homepage Manually");
		}
		return false;
}