	function validateForm(theForm) {
	
		errorFound = false;
		firstError = true;
		errorMessage = "SecureHosting Trial\nThe following errors need to be corrected:\n";
		
		validField(theForm.clntpass,"Password","noblank","","",0,100);
		validField(theForm.mcltname,"Company Name","noblank","","",0,150);
		validField(theForm.mcltcont,"Contact Name","noblank","","",0,150);
		validField(theForm.mclttele,"Telephone Number","noblank","","",0,75);
		validField(theForm.mcltemal,"Email Address","noblank","email","",0,150);
		validField(theForm.mcltstre,"Street","noblank","","",0,150);
		validField(theForm.mclttown,"Town","noblank","","",0,150);
		validField(theForm.mcltcnty,"County / State","noblank","","",0,150);
		validField(theForm.mcltctry,"Country","noblank","","",0,150);
		
		// Display all errors and position on first one  
		if (errorFound) {
			alert(errorMessage);
			errorField.focus();
			
			// Nice to add a check for a list here
			canSelect = false;
			if (canSelect) {
				errorField.select();
			}
		
			return false;
		}
		
		return true;
	}
