function addBookmarkLink(){
	var _hold = document.getElementById('bookmark-hold');
	var _btn = _hold.innerHTML = '<a class="btn-bookmark" href="#" onclick="return addBookmark(window.location.href, document.title, this);"><img src="logo-design-images/img-bookmark.gif" alt="Bookmark US" width="117" height="19" /></a>';
};
if (window.addEventListener) window.addEventListener("load", addBookmarkLink, false);
else if (window.attachEvent) window.attachEvent("onload", addBookmarkLink);
function addBookmark(url, title, link)
{
	if (!url) url = location.href;
	if (!title) title = document.title;
	var u = navigator.userAgent.toLowerCase()
	//Gecko
	if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) {
		window.sidebar.addPanel (title, url, "");
	}//IE4+
	else if (typeof window.external == "object") {
		if((/chrome/i.test(u))) alert('Press Ctrl+D!');
		else window.external.AddFavorite(url, title);
	}
	//Opera7+
	else if (window.opera && document.createElement){
		link.href = url;
		link.rel = "sidebar";
		link.title = url+','+title;
		return true;
	}else {
		alert('Press Ctrl+D!');
		return false;
	}
	return true;
}

