// JavaScript Document
 
function addComment() {
	if (document.getElementById('addCommentField').style.display == '') {
	  document.getElementById('addCommentField').style.display = 'none';
	  document.getElementById('addComment').style.display = '';
	} else {
	  document.getElementById('addCommentField').style.display = '';
	  document.getElementById('addComment').style.display = 'none';
	}
}


function fbs_click(u) {
	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;
}
