function bookmark_us(url, title){

//variables
url = 'http://www.MillionPixelWebsite.net';
  // Blogger - Replace with <$BlogItemPermalinkURL$> 
  // MovableType - Replace with <$MTEntryPermalink$>
  // WordPress - <?php bloginfo('url'); ?>

title = 'Million Pixel Website - Free Advertising';
  // Blogger - Replace with <$BlogItemTitle$> 
  // MovableType - Replace with <$MTEntryTitle$>

rel="sidebar"; //for Opera

	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
		//var elem = document.createElement('a');
		//elem.setAttribute('href',url);
		//elem.setAttribute('title',title);
		//elem.setAttribute('rel','sidebar');
		//elem.click();
		//return true;
		//window.sidebar.addPanel(title, url, rel);
		alert("Please click OK, then press <Ctrl-D> to bookmark this page.");
	}
	else if (navigator.appName=="Netscape") 
	{
		alert("Please click OK, then press <Ctrl-D> to bookmark this page.");
	}
	else if (navigator.appName=="Chrome") 
	{
		alert("Please click OK, then press <Ctrl-D> to bookmark this page.");
	}

}

/**
Usage: Add a link with:

<a href="javascript:bookmark_us('http://www.MillionPixelWebsite.net','Million Pixel Website - Free Advertising')">Bookmark us!</a>

Save above code in js file and link using:
<script type="text/javascript" src="/scripts/javascript/bookmark.js"></script>
in the page header
**/