/* BREAK FRAME */
if( window != window.top ) { top.location.href = location.href; }
/* Bookmark */
function addBookmark(title,url) {
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
	} else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
		return true;
	}
}
//Bookmark on del.icio.us
function dbt_bookmark(targetURL) {
//URL of this document
	var loc=location.href;
	if(targetURL && targetURL.length>0) loc = targetURL;
//Strip out any anchors
	var apos=loc.indexOf('#');
	loc=(apos>0?loc.substring(0,apos):loc);
//Redirect to del.icio.us
	location.href='http://del.icio.us/post?v=2&amp;url='
	+ encodeURIComponent(loc)
	+'&amp;title='
	+encodeURIComponent(document.title);
//Return false so the link won't be activated. 
	return false;
}