function SHBookmark (){

    if ((window.sidebar) || (window.external)) {

        document.getElementById('bookmarkOther').style.display = 'inline';
		document.getElementById('bookmarkOpera').style.display = 'none';

	}else if (window.opera && window.print){

        document.getElementById('bookmarkOther').style.display = 'none';
		document.getElementById('bookmarkOpera').style.display = 'inline'

	}
}

function CreateBookmarkLink() {

	title = document.title;    	// Bookmark title - customize by deleting document.title and inserting your text, for example: "My Title"
	url = location.href;  		// Bookmarking this URL - customizing is same as title

	if (window.sidebar) { 			// Mozilla Firefox

		window.sidebar.addPanel(title, url,"");

	} else if( window.external ) {	// Internet Explorer

		window.external.AddFavorite( url, title);

	} else if(window.opera && window.print) { // Opera

		var elem = document.getElementById('bookmarkOpera');
		elem.href = url;
		elem.title = title;

	}
}
