// JavaScript Document

	function bookmark(url,title) {
	if (window.sidebar) {
	//alert("sidebar");
	window.sidebar.addPanel(title, url,"");
	} else if( document.all ) {
	//alert("external");
	window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
	//alert("opera");
	return true;
	} else if( document.layers ) {
	//alert("layers");
	window.alert( 'Please click OK and then press Ctrl+D to create a bookmark or \n click Bookmarks | Add Bookmark' );
	} else {
	window.alert( 'Please use your browser\'s bookmarking facility to create a bookmark' );
	}
	}