// JavaScript Document
// Herbarium field validation for country
// Name: HerbValidate.js
// Author: Matthew Williamson
// Created: 05/12/2006
<!--

function formValidation(form){
if(notEmpty(form.selectCountry))
{
return true;
}
return false;
}
function notEmpty(elem){
var str = elem.value;
if(str.length == 0){
alert("You must choose a country (*)");
return false;
} else {
return true;
}
}

//-->