
function doValidate(x){
	z=eval('document.all.name');
	if(z.value == ''){
		alert('Please supply your name so they know who the comment is from');
		focusTB('name');
		return false;
	} 

	z=eval('document.all.thecomments');
	if(z.value == ''){
		alert('Please supply a short comment');
		focusTB('thecomments');
		return false;
	} 
	return true;
}
