// Bottom banner including share with digg, ... for rimstar.org website - March 8, 2010
//
// Variables required:
// rs_dirs, rs_title

function get_url_encoded_string(instr)
{
  var i = 0;
  var c = '', outstr = '';

  while (i < instr.length) {
    c = instr.charAt(i);
    if (c == ' ')
      outstr += "%20";
    else if (c == '/')
      outstr += "%2F";
    else if (c == ':')
      outstr += "%3A";
    else
      outstr += c;
    i++;
  }
  return outstr;
}

function insert_bookmark_websites()
{
  var encoded_rs_title, encoded_location_href;

  encoded_rs_title = get_url_encoded_string(rs_title);
  encoded_location_href = get_url_encoded_string(location.href);

  <!-- start of bottom bannner -->
  document.write("<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100%><TR><TD COLSPAN=5>\n");

  document.write("  <P></P>\n");
  document.write("  <TABLE WIDTH=100% BGCOLOR=BLACK><TR><TD>\n");
  document.write("    <P ALIGN=RIGHT>\n");
  document.write("    <FONT SIZE=2 COLOR=WHITE>\n");
  document.write(" Liked this? Share it with: \n");
  // digg
  document.write("<a href=\"http://digg.com/submit?phrase=2&amp;url=" + 
    encoded_location_href + "&amp;title=" + encoded_rs_title + 
    "\" target=\"_blank\"><img src=\"" + rs_dirs + 
    "images/bookmarksite_digg.gif\" border=\"0\" alt=\"Submit to Digg\" /></a>\n");
  document.write("<a href=\"http://digg.com/submit?phrase=2&amp;url=" + 
    encoded_location_href + "&amp;title=" + encoded_rs_title + 
    "\" target=\"_blank\"><font size=2 color=AQUA>Digg</font></a>\n");
  document.write("&nbsp;&nbsp;&nbsp;\n");
  // del.icio.us
  document.write("<a href=\"http://del.icio.us/post?url=" +
    encoded_location_href + "&amp;title=" + encoded_rs_title + 
    "\" target=\"_blank\"><img src=\"" + rs_dirs +
    "images/bookmarksite_delicious.gif\" border=\"0\" alt=\"Submit to del.icio.us\" /></a>\n");
  document.write("<a href=\"http://del.icio.us/post?url=" +
    encoded_location_href + "&amp;title=" + encoded_rs_title +
    "\" target=\"_blank\"><font size=2 color=AQUA>del.icio.us</font></a>\n");
  document.write("&nbsp;&nbsp;&nbsp;\n");
  // stumbleupon
  document.write("<a href=\"http://www.stumbleupon.com/submit?url=" +
    encoded_location_href + "&amp;title=" + encoded_rs_title +
    "\" target=\"_blank\"><img src=\"" + rs_dirs +
    "images/bookmarksite_stumbleupon.gif\" border=\"0\" alt=\"Submit to StumbleUpon\" /></a>\n");
  document.write("<a href=\"http://www.stumbleupon.com/submit?url=" +
    encoded_location_href + "&amp;title=" + encoded_rs_title +
    "\" target=\"_blank\"><font size=2 color=AQUA>StumbleUpon</font></a>\n");
  document.write("&nbsp;&nbsp;&nbsp;\n");
  document.write("<a href=\"http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=" +
    encoded_location_href + "&amp;title=" + encoded_rs_title +
    "\" target=\"_blank\"><img src=\"" + rs_dirs +
    "images/bookmarksite_google.gif\" border=\"0\" alt=\"Submit to Google\" /></a>\n");
  document.write("<a href=\"http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=" +
    encoded_location_href + "&amp;title=" + encoded_rs_title +
    "\" target=\"_blank\"><font size=2 color=AQUA>Google</font></a>\n");
  document.write("    </FONT>\n");
  document.write("    </P>\n");
  document.write("  </TD></TR> </TABLE>\n");

  document.write("</TD></TR>  </TABLE>\n");
  <!-- end of bottom bannner -->
}

insert_bookmark_websites();