function show_comments ()
{
	document.getElementById('comments').style.display = 'block';
	document.location = "#comments";
	return false; //makes the link not go
}

function comment_form ()
{
	show_comments();
	document.location = "#comment_form";
	document.getElementById('name').focus();
	return false;
}
