// JavaScript Document

function wwBookmark() {
	
	CreateBookmarkLink();
}

function wwPrint() {
	window.print();	
}


 function CreateBookmarkLink() {

 title = document.title;
  // Blogger - Replace with <$BlogItemTitle$> 
  // MovableType - Replace with <$MTEntryTitle$>

 url = location;
  // 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
		return true; }
 }
 
 function fp(url) {
	 
	 window.open(url,'','scrollbars=yes,width=655,height=480');
 }


