// JavaScript Document

<!-- Hide from older browsers
	
//Check the enquiry form is filled in correctly
function CheckForm (BTquote) { 

	//Initialise variables
	var errorMsg = "";

		
	//Check for an e-mail address and that it is valid
	if ((document.BTnews.email.value == "") || (document.BTnews.email.value.length > 0 && (document.BTnews.email.value.indexOf("@",0) == - 1 || document.BTnews.email.value.indexOf(".",0) == - 1))) { 
		errorMsg += "\n\tE-mail Address \t ";
	}
		
			
	//If there is aproblem with the form then display an error
	if (errorMsg != ""){
		msg = "\n\n";
		msg = "\n\n";
		msg += "Your email address has not been sent.               \n";
		msg += "Please ensure you type in the correct address.              \n";
		errorMsg += alert(msg +"\n\n");
		return false;
	}
	
	return true;
}
// -->
