// JavaScript Document
// insert the code below between the <script> tag to where you want your bookmark should be
// or you could just call the script itself using <script language="" type="" src=""> tags to where you want your bookmark should be

var txt = "Bookmark This Page" //change to text = "Bookmark this Page!" if you don't want to use an image

 function CreateBookmarkLink() {

 title = "FOTO PORN"; 
  // Blogger - Replace with <$BlogItemTitle$> 
  // MovableType - Replace with <$MTEntryTitle$>

 url = "http://www.fotoporn.org";
  // 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; }
 }

 if (window.external) {
  document.write('<a href = "javascript:CreateBookmarkLink()");">'+ txt +'</a>'); 
  } else  if (window.sidebar) {
  document.write('<a href = "javascript:CreateBookmarkLink()");">'+ txt +'</a>'); 
 } else if (window.opera && window.print) {	
   document.write('<a href = "javascript:CreateBookmarkLink()");">'+ txt +'</a>');
 } 
