function eValidation() {
var okSoFar=true
if (document.enquiry.name.value=="" && okSoFar) {
alert('Please submit your Name!')
document.enquiry.name.focus()
okSoFar=false
}
var foundAt = document.enquiry.from.value.indexOf("@",0)
if (foundAt < 1 && okSoFar) {
alert('Please submit a valid Email Address so we can reply!')
document.enquiry.from.focus()
okSoFar=false
}
if (document.enquiry.county.value=="" && okSoFar) {
alert('Please click the map to show your County!')
document.enquiry.county.focus()
okSoFar=false
}
if (document.enquiry.comment.value=="" && okSoFar) {
alert('Please state your enquiry?')
document.enquiry.comment.focus()
okSoFar=false
}
if (okSoFar==true) {
document.enquiry.submit()
}
}

function bValidation() {
var okSoFar=true
if (document.brochure.name.value=="" && okSoFar) {
alert('Please submit your Name!')
document.brochure.name.focus()
okSoFar=false
}
if (document.brochure.address.value=="" && okSoFar) {
alert('Please submit your street address!')
document.brochure.address.focus()
okSoFar=false
}
if (document.brochure.county.value=="" && okSoFar) {
alert('Please click the map to show your County!')
document.brochure.county.focus()
okSoFar=false
}
if (document.brochure.postcode.value=="" && okSoFar) {
alert('Please submit your postcode!')
document.brochure.postcode.focus()
okSoFar=false
}
if (document.brochure.telephone.value=="" && okSoFar) {
alert('Please submit your telephone number!')
document.brochure.telephone.focus()
okSoFar=false
}
var foundAt = document.brochure.from.value.indexOf("@",0)
if (foundAt < 1 && okSoFar) {
alert('Please submit a valid Email Address\n\
\n\ we may contact you by email')
document.brochure.from.focus()
okSoFar=false
}
if (okSoFar==true) {
document.brochure.submit()
}
}

function qValidation() {
var okSoFar=true
if (document.quotation.name.value=="" && okSoFar) {
alert('Please submit your Name!')
document.quotation.name.focus()
okSoFar=false
}
if (document.quotation.address.value=="" && okSoFar) {
alert('Please submit your street address!')
document.quotation.address.focus()
okSoFar=false
}
if (document.quotation.county.value=="" && okSoFar) {
alert('Please click the map to show your County!')
document.quotation.county.focus()
okSoFar=false
}
if (document.quotation.postcode.value=="" && okSoFar) {
alert('Please submit your postcode!')
document.quotation.postcode.focus()
okSoFar=false
}
if (document.quotation.telephone.value=="" && okSoFar) {
alert('Please submit your telephone number!')
document.quotation.telephone.focus()
okSoFar=false
}
var foundAt = document.quotation.from.value.indexOf("@",0)
if (foundAt < 1 && okSoFar) {
alert('Please submit a valid Email Address\n\
\n\ we may contact you by email')
document.quotation.from.focus()
okSoFar=false
}
if (okSoFar==true) {
document.quotation.submit()
}
}