
function bookmark(){
	var pgUrl = window.location.href;
	var pgTitle = document.title;
	if (window.sidebar){
		window.sidebar.addPanel(pgTitle, pgUrl,"");
	}
	else if( document.all ){
		window.external.AddFavorite( pgUrl, pgTitle);
	}
	else if( window.opera && window.print ){
		var elem = document.createElement('a');
		elem.setAttribute('href',pgUrl);
		elem.setAttribute('title',pgTitle);
		elem.setAttribute('rel','sidebar');
		elem.click();
	}
}