<!-- Begin
var submitcount=0;
function reset() {
submitcount=0;
document.form1.reset()
}
function checkFields() {
missinginfo = "";
if (document.form1.Category.selectedIndex<1) 
if (document.form1.EventCountry.selectedIndex<1) {
missinginfo += "\n     -  Category or Country";
}
if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"You failed to select the following:\n" +
missinginfo + "\n_____________________________" +
"\nPlease Select and submit again!";
alert(missinginfo);
return false;
}
if (submitcount == 0)
{
     submitcount++;
}
else 
{
  alert("This form has already been submitted.  Thanks!");
  return false;
}
if (document.form1.StartDate.value !=0)
document.form1.StartDate.value='>='+document.form1.StartDate.value
else
document.form1.StartDate.value='';
if (document.form1.EndDate.value !=0)
document.form1.EndDate.value='<='+document.form1.EndDate.value
else
document.form1.EndDate.value='';
return true;
}
//  End -->


