<!--

function validate() {
  var form = document.forms.contactForm;
  var name = form.firstname.value + ' ' + form.lastname.value

  if ((name==' ')&&(form.company.value=='')) {
    alert ('Please provide your name and/or your company name.');
	form.firstname.focus();
	return false;
  } 
  
  if (form.comments.value=='') {
    alert('Please provide us with your questions or comments.');
	form.comments.focus();
	return false;
  }
  return true
}

//-->