function addBookmark( title ) {
	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, document.location.href,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( document.location.href, title); 
	}
}

function popup(url,nme,hgt,wgt) {
	var params='toolbar=no,height='+hgt+',width='+wgt+',location=no,scrollbars=yes,status=no,menubar=no,resizable=no';
	if(self && self.screen && self.screen.width)
		{
			params+=",left="+((self.screen.width-wgt)/2);
			params+=",top="+((self.screen.height-hgt)/2);
		}
	window.open(url,nme,params);
}

