/* Function for sharing an article on Facebook */
function shareFacebook(strArtUrl,strArtTitle)
{
  var tmpUrl = encodeURIComponent(strArtUrl);
  var tmpTitle = encodeURIComponent(strArtTitle);
  window.open("http://www.facebook.com/sharer.php?u=" + tmpUrl + "&t=" + tmpTitle , "Facebook", "width=645,height=436,location=0,menubar=0,resizabl=1,scrollbars=0,status=0,toolbar=0");
}

/* Function for sharing an article on Nettby */
function shareNettby(strArtUrl,strArtTitle)
{
  var tmpUrl = encodeURIComponent(strArtUrl);
  var tmpTitle = encodeURIComponent(strArtTitle);
  window.open("http://www.nettby.no/user/edit_link.php?name=" + tmpTitle + "&url=" + tmpUrl + "&description=", "Nettby", "width=450,height=430,location=0,menubar=0,resizabl=1,scrollbars=0,status=0,toolbar=0");
}
