/**
* Opens the Facebook share dialog
*
* @param fullUrl The full url to the page to share, i,e. http://www.tibe.no/index.php?page_id=19
*/
function fbs_click(fullUrl) {
	u=fullUrl;
	t=document.title;
	window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
	return false;
}


/**
* Opens the Nettby share dialog
* 
* @parm title page title
* @param fullUrl The full url to the page to share, i,e. http://www.tibe.no/index.php?page_id=19
* @description page description/ingress
*/
function nettby_click(title, fullUrl, description) {
    nettby_link_share_window = window.open('http://www.nettby.no/user/edit_link.php?name=' + escape(title) + '&url=' + escape(fullUrl) + '&description=' + escape(description), 'edit_link', 'scrollbars=no,width=450,height=430');
    return false;
}