<!-- Hide script from older browsers

function submitIt(form){

	//make sure they select a category
	categoryChoice = TechAssist.Category.selectedIndex
	if (document.TechAssist.Category.options[categoryChoice].value == "PleaseSelect") {
		alert("You must select a support category")
		//places the cursor in the support field
		document.TechAssist.Category.focus()
		return false
	}
	
	//enter details of support
	if (document.TechAssist.AssistDetails.value == ""){
		alert("Please provide details of your support request")
		document.TechAssist.AssistDetails.focus()
		return false
	}
	
	//enter personal details
	if (document.TechAssist.ReqName.value == "") {
		alert("Please enter the name of the person requesting the support")
		document.TechAssist.ReqName.focus()
		return false
	}
	if (document.TechAssist.ReqOrganisation.value == "") {
		alert("Please enter your organisation")
		document.TechAssist.ReqOrganisation.focus()
		return false
	}
	if (document.TechAssist.PayName.value == "") {
		alert("Please enter the name of the person who is paying for the support")
		document.TechAssist.PayName.focus()
		return false
	}
	if (document.TechAssist.PayOrganisation.value == "") {
		alert("Please enter the organisation")
		document.TechAssist.PayOrganisation.focus()
		return false
	}
	
	//ensure they accept the charges
	if (document.TechAssist.AcceptCharges.checked == false){
		alert("Please tick the box to accept the charges")
		document.TechAssist.AcceptCharges.focus()
		return false
	}
}

//End hiding script-->