function addTo(n)
{ 
  var loc = "";
  if (n == 1) // digg
    {
      loc = 'http://digg.com/submit?phase=2&url='+encodeURIComponent(document.location.href);
    }
  else if (n == 2) // delicious
    {
      loc = 'http://del.icio.us/post?v=2&url='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title);
    }
  //else if (n == 3) // furl
   // {
     // loc = 'http://www.furl.net/storeIt.jsp?u='+encodeURIComponent(document.location.href)+'&t='+encodeURIComponent(document.title);
  //  }
  else if (n == 4) // google
    {
     // loc = 'http://www.google.com/ig/add?feedurl='+encodeURIComponent(document.location.href);
        loc = 'http://www.google.com/bookmarks/mark?op=add&bkmk='+encodeURIComponent(document.location.href)+'&title='+encodeURIComponent(document.title)+'&annotation=';
    }
  else if (n == 5) // facebook
    {
    loc = 'http://www.facebook.com/sharer.php?u='+encodeURIComponent(document.location.href)+'&t='+encodeURIComponent(document.title); 
    }

 else if (n == 6) //twitter 
    {
     loc = 'http://twitter.com/home?status='+encodeURIComponent(document.location.href)+' '+encodeURIComponent(document.title);


    }


  if (loc.length > 0)
    {
      window.open(loc);
    }
}

document.writeln('<p style="margin-top:3pt"><span style="font-family:arial;font-size:70%;font-weight:bold;">Share: <a href="#" onclick="addTo(5);return false;"><img src="/s_i/sh/fcb.png" border=0></a> <a href ="#" onclick="addTo(6);return false;"><img src="/s_i/sh/twt.png" border=0></a> <a href="#" onclick="addTo(4);return false;"><img src="/s_i/sh/gog.png" border=0></a> <a href="#" onclick="addTo(2);return false;"><img src="/s_i/sh/del.png" border=0></a></span></p>');
/*
function displayDropDown(array, startIndex)
{
}
*/
