function chk(theForm)
{
if (theForm.Company.value == "")
{
alert("Please enter your company£”");
theForm.Company.focus();
return (false);
}
if (theForm.Tel.value == "")
{
alert("Please enter your phone£”");
theForm.Tel.focus();
return (false);
}
if (theForm.Memo.value == "")
{
alert("Please enter your information£”");
theForm.Memo.focus();
return (false);
}
return true;
}
