<!--

function new_freecap()
{
  // loads new freeCap image
  if(document.getElementById)
  {
    // extract image name from image source (i.e. cut off ?randomness)
    thesrc = document.getElementById("freecap").src;
    thesrc = thesrc.substring(0,thesrc.lastIndexOf(".")+4);
    // add ?(random) to prevent browser/isp caching
    document.getElementById("freecap").src = thesrc+"?"+Math.round(Math.random()*100000);
  }
  else
  {
    alert("Sorry, cannot autoreload freeCap image\nSubmit the form and a new freeCap will be loaded");
  }
}

//checkFrame('contact.html');

function checkValue(field,thingywotsit)
{
  var temp = eval("document.contactForm."+field+".value;");
  if(temp=="" || temp==" ")
  {
    alert("Please fill in your " + thingywotsit + ", and try again.");
    eval("document.contactForm."+field+".focus();");
    return false;
  }
  else
  {
    return true;
  }

}

function checkForm()
{

  if(checkValue("word","word") && checkValue("yname","name") && checkValue("address1","address") && checkValue("postcode","postcode") && checkValue("county","county or state") && checkValue("country","country") && checkValue("dayphone","phone number") && checkValue("comments","comments about whiltonmill, or any questions you may have"))
  {
    if(emailCheck(document.contactForm.email.value))
    {
        document.contactForm.submit();
    }
    else
    {
            alert("Please fill in your email address, and try again.\nIf you have filled in your email address, check the '.' and '@' sign are correct, an email address will look something like this:\n\nyourname@somewhere.com                   or                  yourname@somewhere.co.uk\n");
            document.contactForm.email.focus();
            return false;
    }
  }
  else
  {
  	return false;
  }
}

function allOffroad()
{
  if(document.contactForm.alloffroad.checked)
  {
          document.contactForm.offroadquad.checked = true;
          document.contactForm.offroadxrv.checked = true;
  }
}
function allKarting()
{
  if(document.contactForm.allkarting.checked)
  {
          document.contactForm.kartingnationalcircuit.checked = true;
          document.contactForm.kartingclubcircuit.checked = true;
          document.contactForm.kartingjuniorclub.checked = true;
          document.contactForm.kartingclub.checked = true;
  }
}
function allActivity()
{
  if(document.contactForm.allactivity.checked)
  {
          document.contactForm.activitymotor.checked = true;
          document.contactForm.activityshooting.checked = true;
          document.contactForm.activityindoor.checked = true;
          document.contactForm.activityteamwork.checked = true;
          document.contactForm.activityother.checked = true;
          document.contactForm.activitykids.checked = true;
          document.contactForm.activityvenuehire.checked = true;
          document.contactForm.activityextras.checked = true;
          document.contactForm.activityfacilities.checked = true;
  }
}
function allParties()
{
  if(document.contactForm.allparties.checked)
  {
          document.contactForm.partiesprivate.checked = true;
          document.contactForm.partieschristmas.checked = true;
  }
}
//-->
