function checkfb() {
var f = document.fb;

if(f.subject.value == '') { 
	alert('Please fill in a subject.');
	f.subject.focus();
	return false;
	}

if(f.comment.value == '') {
	alert('Please fill in your comments.');
	f.comment.focus();
	return false;
	}

}