function checkContact(theForm) {
    if(theForm.fsName.value == '') {
        alert("Please Enter Your Name")
        theForm.fsName.focus()
        return false
    }

    if(theForm.fsEmail.value == '') {
        alert("Please Enter Your Email Address")
        theForm.fsEmail.focus()
        return false
    }

    if(theForm.topic.options[theForm.topic.options.selectedIndex].value == '0') {
      alert("Please Select A Topic")
      theForm.topic.focus()
      return false
    }
    return true;
}