/*
   Functions List:
   formFocus
      Puts the cursor in the First and Last Name field upon page load.
*/

function formFocus() {
	document.contactForm.name.focus();
	}
