function checkcomment() {
	if (document.getElementById('comment').value.length == 0) {
		alert('You haven\'t written a comment.');
		document.getElementById('comment').focus();
		return false;
	}
	if (document.getElementById('author').value.length == 0) {
		document.getElementById('author').value = 'Anonymous';
	}
	return true;
}
