
function validateJournalEntry(){
	
	if(document.pform.title.value != "" && document.pform.content.value != "")
		return true;
	
	alert("You must fill out the title and the body of your journal entry.");
	
	return false;
	
}
