function insertBookmarkDigg() {
 // ------------------------------------------ //
 // 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 = "";
    $theURL = encodeURIComponent(location.href); // location.href;
    $theTitle = encodeURIComponent(document.title) // document.title;
    $theDescription = "";

    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 = '<table cellspacing="0" cellpadding="0">';
	$theButtonList += '<tr>';
	// reddit
	$theButtonList += '<td align="center" valign="middle"><a target="_blank" href="http:\/\/reddit.com\/submit?url=' + $theURL + '&amp;title=' + $theTitle + '"><img src="http:\/\/news.ert.gr\/local\/periferiaka_nea_imgs\/icons\/digg.gif" border="0"><\/a><\/td>';
	$theButtonList += '<\/tr>';
	$theButtonList += '<\/table>';
	

 // IE bookmark
    var IEstring = '<li><a href="#bookmark"';
    IEstring +=  'onClick="javascript:window.external.AddFavorite(location.href,document.title)\;">';
    IEstring +=  'Bookmark in IE<\/a><\/li> ';
 // IE start page
    IEstring +=  '<li><a href="#startpage"';
    IEstring +=  'onClick="this.style.behavior=\'url(#default#homepage)\'\;this.setHomePage(location.href)\;">';
    IEstring +=  'Make this your start page<\/a><\/li>';

    var agt = navigator.userAgent.toLowerCase();
    var ieAgent = agt.indexOf('msie');

   // if (ieAgent != -1) {
   //     $theButtonList += IEstring;
    //}

 //button list end
    $theButtonList += '';

 // write list to page
   document.write($theButtonList);
}
