function popUpDef(url,width,height,name,other) {
	myPopup = window.open(url + "?width=" + width + "&height=" + height + "&navn=" + name + other, "PopupTest", "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=yes,width=" + width + ",height=" + height + ",left = 100,top = 100")
}

function oN(obj) 
{
obj.style.background = "#E0DFE3"; 
}
 
function oF(obj) {
obj.style.background = "#ffffff"; }


  var currentUrl = encodeURIComponent(location.href);
  var currentTitle = encodeURIComponent(document.title); 
  //var currentTitle = document.title; 
  var props = "toolbar=0,status=0,scrollbars=yes";

  function shareOnFacebook() {
    var url= "http://www.facebook.com/sharer.php?u="+currentUrl+"&t="+currentTitle;
    window.open(url,"facebook", props+",width=626,height=436");
    return false;
  }

  function shareOnDigg() {
    var url = "http://digg.com/submit?title=" + currentTitle + "&url=" + currentUrl;
    window.open(url, "digg", props+',width=950,height=700'); 
    return false;
  }

  function shareOnDelicious() {
    var url = "http://delicious.com/save?v=5&amp;noui&amp;jump=close&amp;url="+currentUrl+"&amp;title="+currentTitle;
    window.open(url, "delicious", props+",width=550,height=550"); 
    return false;
  }

  function shareOnTwitter() {
    var url="http://twitter.com/home?status="+currentUrl;
    window.open(url, "twitter", props+",width=800,height=400");
    return false;
  }

