function verifyActivitiesForm() {
    var tag=document.getElementById('contact_firstname');
    if (isBlank(tag.value)) {
        alert('Please specify a First Name!'); tag.focus(); return false;
    }
    var tag=document.getElementById('contact_lastname');
    if (isBlank(tag.value)) {
        alert('Please specify a Last Name!'); tag.focus(); return false;
    }
    var tag=document.getElementById('contact_email');
    if (!checkemail(tag.value)) {
      alert(tag.value + ' is not a valid email address!'); tag.focus(); return false;
    }
    var tag=document.getElementById('contact_phone');
    if (isBlank(tag.value)) {
        alert('Please specify a Daytime Phone number!'); tag.focus(); return false;
    }
        var tag=document.getElementById('resort_id_1');
    if (tag.options[tag.selectedIndex].value != 0) {
        var ptag=document.getElementById('peoples_1');
        if (ptag.options[ptag.selectedIndex].value == 0) {
            alert('Please select # of peoples!'); ptag.focus(); return false;
        }
        var dtag=document.getElementById('date_1');
        if (!checkdate2(dtag.value)) {
            alert('Please select a date!'); dtag.focus(); return false;
        }
    }
        var tag=document.getElementById('resort_id_2');
    if (tag.options[tag.selectedIndex].value != 0) {
        var ptag=document.getElementById('peoples_2');
        if (ptag.options[ptag.selectedIndex].value == 0) {
            alert('Please select # of peoples!'); ptag.focus(); return false;
        }
        var dtag=document.getElementById('date_2');
        if (!checkdate2(dtag.value)) {
            alert('Please select a date!'); dtag.focus(); return false;
        }
    }
        var tag=document.getElementById('resort_id_3');
    if (tag.options[tag.selectedIndex].value != 0) {
        var ptag=document.getElementById('peoples_3');
        if (ptag.options[ptag.selectedIndex].value == 0) {
            alert('Please select # of peoples!'); ptag.focus(); return false;
        }
        var dtag=document.getElementById('date_3');
        if (!checkdate2(dtag.value)) {
            alert('Please select a date!'); dtag.focus(); return false;
        }
    }
        var tag=document.getElementById('resort_id_4');
    if (tag.options[tag.selectedIndex].value != 0) {
        var ptag=document.getElementById('peoples_4');
        if (ptag.options[ptag.selectedIndex].value == 0) {
            alert('Please select # of peoples!'); ptag.focus(); return false;
        }
        var dtag=document.getElementById('date_4');
        if (!checkdate2(dtag.value)) {
            alert('Please select a date!'); dtag.focus(); return false;
        }
    }
        return true;
}