function testBox1(form) {
	Ctrl = form.Telephone;
	if (Ctrl.value == "") {
		validatePrompt (Ctrl, "Please tell us your telephone number")
		return (false);
	} else
		return (true);
}

function testBox2(form) {
	Ctrl = form.Computers;
	if (Ctrl.value == "") {
		validatePrompt (Ctrl, "Please tell us how many computers you have including laptops")
		return (false);
	} else
		return (true);
}

function runSubmit (form)  {

	if (!testBox1(form)) return false;
	if (!testBox2(form)) return false;

	//alert ("All entries verified OK!");
	form.submit();	// un-comment to submit form
	return;
}

function validatePrompt (Ctrl, PromptStr) {
	alert (PromptStr)
	Ctrl.focus();
	return;
}


function loadDoc() {
	// initial focus; use if needed
	//document.details.P1.focus ();
	return;
}