var sURL = unescape(window.location.pathname);

function Redirect(sU)
{
    window.location.href = sURL;
}


function CreateBookmarkLink(title, url) {

  // Blogger - Replace with <$BlogItemPermalinkURL$> 
  // MovableType - Replace with <$MTEntryPermalink$>
  // WordPress - <?php bloginfo('url'); ?>

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,'');
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
	CreateOperaBookmarkLink(title, url);
	}
}

function CreateOperaBookmarkLink (title, url){
		
		var elem = document.createElement('a');
	    elem.setAttribute('href',url);
    	elem.setAttribute('title',title);
    	elem.setAttribute('rel','sidebar');
    	elem.click();

}



