var showImg; 
function showmyImg(url) { 
showImg=window.open ("", "showImg","fullscreen=no"); 
showImg.document.open(); 
showImg.document.writeln("<html><body scroll=no style='margin:25; background-color:#000000'><center><img src="+url+" border=0 onLoad='self.resizeTo(this.width,this.height);' onClick='self.close();'></center></body></html>"); 
showImg.document.close(); 
showImg.moveTo(); 
showImg.focus(); 
} 

function CreateBookmarkLink() {

 title = "Webpage Title"; 
  // Blogger - Replace with <$BlogItemTitle$> 
  // MovableType - Replace with <$MTEntryTitle$>

 url = "http://washportal.ru/";
  // 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; }
 }
