function insertBookmarkList() {
 // ------------------------------------------ //
 // Version: This is version 1.1.4             //
 // Script by Claus Schmidt of http://clsc.net //
 //                                            //
 // Copyright: You have the right to copy this //
 // in fact you have to if you want to use it. //
 //                                            //
 // License: Creative commons,                 //
 //          Attribution-ShareAlike 2.0        //
 // ------------------------------------------ //


 // ------------------------------------------ //
 // To leave out a bookmark service just       //
 // comment out the relevant line below. You   //
 // do that by putting two slashes ("//") to   //
 // the left of "$theButtonList".              //
 //                                            //
 // For an example, look for the entry called  //
 // "Threadwatch" (this one will not be shown  //
 // unless you remove the slashes "//" to the  //
 // left of "$theButtonList".                  //
 //                                            //
 // You may also just delete the full two      //
 // lines for each service you don't need.     //
 //                                            //
 // Enjoy.                                     //
 // ------------------------------------------ //


 // define common stuff
    $theMessage = "<span style=\"color: #708090;\">dodaj do: <\/span>";
    $theURL = encodeURIComponent(location.href); // location.href;
    $theTitle = encodeURIComponent(document.title) // document.title;
    $theDescription = "wpisz tu coś o dadawanej stronie";

    if(window.getSelection)
    {
        $theDescription = encodeURIComponent(window.getSelection());
    }
    else if (document.getSelection)
    {
        $theDescription = encodeURIComponent(document.getSelection());
    }
    else if (document.selection && document.selection.createRange)
    {
        txt = document.selection.createRange().text;
        $theDescription = encodeURIComponent(txt);
    }
    else if(document.selection)
    {
        txt=document.selection.createRange().text;
        $theDescription = encodeURIComponent(txt);
    }

 //button list begin
   // var $theButtonList = '<p>' + $theMessage;
    var $theButtonList = $theMessage;
    
// wykop
    $theButtonList += '<a rel="nofollow" target="_blank" href="http:\/\/www.wykop.pl\/dodaj?url='  + $theURL + '&title=' + $theTitle + '"><img src="http:\/\/www.digital-painting.org\/graf\/wykop.gif" alt="wykop" \/><\/a>  ';
// del.icio.us
    $theButtonList += '<a rel="nofollow" target="_blank" href="http:\/\/del.icio.us\/post?url=' + $theURL + '&title=' + $theTitle + '"><img src="http:\/\/www.digital-painting.org\/graf\/delicious.png" alt="del.icio.us" \/><\/a> ';
 // digg
    $theButtonList += '<a rel="nofollow" target="_blank" href="http:\/\/digg.com\/submit?phase=2&url=' + $theURL + '"><img src="http:\/\/www.digital-painting.org\/graf\/digg.png"  alt="Digg" \/><\/a> ';
 //stumble upon
    $theButtonList += '<a rel="nofollow" target="_blank" href="http:\/\/www.stumbleupon.com\/submit?url=' + $theURL + '&title=' + $theTitle + '"><img src="http:\/\/www.digital-painting.org\/graf\/stumbleupon.png" alt="stumble upon" \/><\/a> '; 
// furl
    $theButtonList += '<a rel="nofollow" target="_blank" href="http:\/\/www.furl.net\/storeIt.jsp?t=' + $theTitle + '&u=' + $theURL + '"><img src="http:\/\/www.digital-painting.org\/graf\/furl.png" alt="furl" \/><\/a> ';
// ma.gnolia
    $theButtonList += '<a rel="nofollow" target="_blank" href="http:\/\/ma.gnolia.com\/bookmarklet\/add?url=' + $theURL + '&title=' + $theTitle + '"><img src="http:\/\/www.digital-painting.org\/graf\/magnolia.png" alt="magnolia" \/><\/a> ';
// reddit
    $theButtonList += '<a rel="nofollow" target="_blank" href="http:\/\/reddit.com\/submit?url=' + $theURL + '&title=' + $theTitle + '"><img src="http:\/\/www.digital-painting.org\/graf\/reddit.png" alt="reddit" \/><\/a> ';
// spurl
    $theButtonList += '<a rel="nofollow" target="_blank" href="http:\/\/www.spurl.net\/spurl.php?url=' + $theURL + '&title=' + $theTitle + '"><img src="http:\/\/www.digital-painting.org\/graf\/spurl.png" alt="spurl" \/><\/a> ';
// google
    $theButtonList += '<a rel="nofollow" target="_blank" href="http:\/\/www.google.com\/bookmarks\/mark?op=edit&bkmk=' + $theURL + '&title=' + $theTitle + '"><img src="http:\/\/www.digital-painting.org\/graf\/googlebookmark.png" alt="Google" \/><\/a> ';
// technorati
    $theButtonList += '<a rel="nofollow" target="_blank" href="http:\/\/www.technorati.com\/search\/' + $theURL + '"><img src="http:\/\/www.digital-painting.org\/graf\/technorati.png" alt="technotari" \/><\/a> ';
// gwar
    $theButtonList += '<a rel="nofollow" target="_blank" href="\/\/:www.gwar.pl\/DodajGwar.html?u=' + $theURL + '"><img src="http:\/\/www.digital-painting.org\/graf\/gwar.gif" title="Gwar" alt="Gwar" /></a> ';
//live  favorities
	$theButtonList += '<a rel="nofollow" target="_blank" href="https:\/\/favorites.live.com\/quickadd.aspx?marklet=1&url=' + $theURL + '&title=' + $theTitle + '"><img src="http:\/\/www.digital-painting.org\/graf\/live.png" alt="Live" border="0" title="Live" /><\/a>';

	

// IE bookmark
    var IEstring = '<a href="#bookmark"';
    IEstring +=  'onClick="javascript:window.external.AddFavorite(location.href,document.title)\;">';
    IEstring +=  'Bookmark in IE<\/a> ';
 // IE start page
    IEstring +=  '<a href="#startpage"';
    IEstring +=  'onClick="this.style.behavior=\'url(#default#homepage)\'\;this.setHomePage(location.href)\;">';
    IEstring +=  'Make this your start page<\/a>';

    var agt = navigator.userAgent.toLowerCase();
    var ieAgent = agt.indexOf('msie');

    if (ieAgent != -1) {
        $theButtonList += IEstring;
    }

 //button list end
   // $theButtonList += '<\/p>';
    $theButtonList;

 // write list to page
   document.write($theButtonList);
}