var total_errors = 0;

function comment_val(theForm){
	
	if(submitme.name.value == ''){
		var error_id = document.getElementById('user_err');
		error_id.style.visibility = 'visible';
		error_id.style.color = '#D53042';
		total_errors++;
	}else{
		var error_id = document.getElementById('user_err');
		error_id.style.visibility = 'hidden';
	}

	if(submitme.comments.value == ''){
		var error_id = document.getElementById('comment_err');
		error_id.style.visibility = 'visible';
		error_id.style.color = '#D53042';
		total_errors++;
	}else{
		var error_id = document.getElementById('comment_err');
		error_id.style.visibility = 'hidden';
	}

	if(total_errors > 0){
		total_errors = 0;
		return false;
	}else{
		return true;
	}
}

