function insertBookmarkList() {
// ------------------------------------------
// Version: This is version 1.1.4             
// ------------------------------------------
// 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 width="*" border="0" cellspacing="0" cellpadding="0">';
	$theButtonList += '<tr>';

// 01.google
    $theButtonList += '<td width="30" height="45" class="borders"><table width="16" height="16" cellspacing="0" cellpadding="0" style="border: 2px ridge #9D613C"><\/tr><td align="center" valign="middle"><a target="_blank" href="http:\/\/www.google.com\/bookmarks\/mark?op=edit&bkmk=' + $theURL + '&amp;title=' + $theTitle + '"><img src="http:\/\/floga.gr\/00\/01\/01.png" alt="google" border="0"><\/a><\/td><\/tr><\/table><\/td>';
	$theButtonList += '<td width="10"><\/td>';
// 02.yahoo my web
    $theButtonList += '<td width="30" height="45" class="borders"><table width="16" height="16" cellspacing="0" cellpadding="0" style="border: 2px ridge #9D613C"><\/tr><td align="center" valign="middle"><a target="_blank" href="http:\/\/myweb2.search.yahoo.com\/myresults\/bookmarklet?t=' + $theTitle + '&amp;u=' + $theURL + '"><img src="http:\/\/floga.gr\/00\/01\/02.png" alt="yahoo my web" border="0"><\/a><\/td><\/tr><\/table><\/td> ';
	$theButtonList += '<td width="10"><\/td>';
// 03.favorites live
    $theButtonList += '<td width="30" height="45" class="borders"><table width="16" height="16" cellspacing="0" cellpadding="0" style="border: 2px ridge #9D613C"><\/tr><td align="center" valign="middle"><a target="_blank" href="http:\/\/favorites.live.com\/quickadd.aspx?url=' + $theURL + '&amp;title=' + $theTitle + '"><img src="http:\/\/floga.gr\/00\/01\/03.png" alt="favorites live" border="0"><\/a><\/td><\/tr><\/table><\/td>';
	$theButtonList += '<td width="10"><\/td>';
// 04.digg
	$theButtonList += '<td width="30" height="45" class="borders"><table width="16" height="16" cellspacing="0" cellpadding="0" style="border: 2px ridge #9D613C"><\/tr><td align="center" valign="middle"><a target="_blank" href="http:\/\/digg.com\/submit?page&url=' + $theURL + '&phase=2&title=' + $theTitle + '"><img src="http:\/\/floga.gr\/00\/01\/06.png" alt="digg" border="0"><\/a><\/td><\/tr><\/table><\/td>';
	$theButtonList += '<td width="10"><\/td>';	
// 05.del.icio.us
    $theButtonList += '<td width="30" height="45" class="borders"><table width="16" height="16" cellspacing="0" cellpadding="0" style="border: 2px ridge #9D613C"><\/tr><td align="center" valign="middle"><a target="_blank" href="http:\/\/del.icio.us\/post?url=' + $theURL + '&amp;title=' + $theTitle + '"><img src="http:\/\/floga.gr\/00\/01\/05.png" alt="del.icio.us" border="0"><\/a><\/td><\/tr><\/table><\/td>';
	$theButtonList += '<td width="10"><\/td>';
// 06.reddit
	$theButtonList += '<td width="30" height="45" class="borders"><table width="16" height="16" cellspacing="0" cellpadding="0" style="border: 2px ridge #9D613C"><\/tr><td align="center" valign="middle"><a target="_blank" href="http:\/\/reddit.com\/submit?url=' + $theURL + '&amp;title=' + $theTitle + '"><img src="http:\/\/floga.gr\/00\/01\/07.png" alt="reddit" border="0"><\/a><\/td><\/tr><\/table><\/td>';
	$theButtonList += '<td width="10"><\/td>';
// 07.mixx
    $theButtonList += '<td width="30" height="45" class="borders"><table width="16" height="16" cellspacing="0" cellpadding="0" style="border: 2px ridge #9D613C"><\/tr><td align="center" valign="middle"><a target="_blank" href="http:\/\/www.mixx.com\/submit?page_url=' + $theURL + '&amp;title=' + $theTitle + '"><img src="http:\/\/floga.gr\/00\/01\/08.png" alt="mixx" border="0"><\/a><\/td><\/tr><\/table><\/td>';
	$theButtonList += '<\/tr>';
	$theButtonList += '<\/table>';
// 08.facebook
//     $theButtonList += '<td width="30" height="45" class="borders"><table width="16" height="16" cellspacing="0" cellpadding="0" style="border: 2px ridge #9D613C"><\/tr><td align="center" valign="middle"><a target="_blank" href="http:\/\/www.facebook.com\/sharer.php?u=' + $theURL + '&amp;t=' + $theTitle + '"><img src="http:\/\/floga.gr\/00\/01\/04.png" alt="facebook" border="0"><\/a><\/td><\/tr><\/table><\/td> ';
// 	$theButtonList += '<td width="10"><\/td>';

// 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);
}

