function CreateBookmarkLink() {

title = "WOWed.co.uk - value to leave you WOWed";
url = "http://demos.frodo.wilson-cooke.co.uk/wowed/";

if (window.sidebar) { // Mozilla Firefox Bookmark
	window.sidebar.addPanel(title, url,'');
	alert("Firefox adds bookmarks to the sidebar by default,\nnot the main page.  Please go to the Bookmarks menu\nand right-click the WOWed link, then choose 'Properties'\nand uncheck the box marked:\n'Load This Bookmark in the Sidebar'.");
} else if( window.external ) { // IE Favorite
	window.external.AddFavorite( url, title);
} else if(window.opera && window.print) { // Opera Hotlist
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
	return true; }
}
