// JavaScript Document

function noSpam(login,parametr,serwer) {
 textstring = login + String.fromCharCode(64) + serwer;
 locationstring = "mailto:" + textstring;
 if (parametr==1) { window.location = locationstring; }
 if (parametr==2) { document.write(textstring); }
}


function CreateBookmarkLink() {
 title = "Jaskółka - Ośrodek wypoczynkowy"; 
  // Blogger - Replace with <$BlogItemTitle$> 
  // MovableType - Replace with <$MTEntryTitle$>

 url = "http://owjaskolka.pl/";
  // Blogger - Replace with <$BlogItemPermalinkURL$> 
  // MovableType - Replace with <$MTEntryPermalink$>
  // WordPress - <?php bloginfo('url'); ?>

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"_blank");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
}
