﻿/* Eitido (c) 2009 - Norman Geiersbach - 12/01/2009 */
function addBookmark(name, url, title, rootNode, rootUrl)
{
  // Note: append new elements before assigning values,
  // because of ie security zones: http://karma.nucleuscms.org/item/101
  var anchor = document.createElement("a");
  rootNode.appendChild(anchor); 
  anchor.target = "_blank";
  anchor.href = url + document.URL;
  var image = document.createElement("img");
  anchor.appendChild(image);
  image.src = rootUrl + "Images/Bookmark/" + name + ".png";
  image.alt = name;
  image.title = title;
}

function createBookmarks()
{
  var rootUrl = (document.getElementById("rootUrl") != null) ? document.getElementById("rootUrl").value : "";
  var bookmarks = document.getElementById("bookmarks");
  
  if( bookmarks != null )
  {
    addBookmark("facebook", "http://www.facebook.com/share.php?u=", "Share this on Facebook", bookmarks, rootUrl);
    addBookmark("myspace", "http://www.myspace.com/Modules/PostTo/Pages/?l=3&u=", "Share this on Myspace", bookmarks, rootUrl);
    addBookmark("twitter", "http://twitter.com/home?status=", "Share this on Twitter", bookmarks, rootUrl);
  }  
}

createBookmarks();
