How can I require the First and Last name fields?
<?php
if (!$Submit){ ?>
<span class="CenterHeader style2"><font face=Arial><b>Fill out the form below</b></font></span><br>
<form method="post" action="<?php echo $PHP_SELF; ?>">
<div align="left">
<p></p>
<table width="718" border="1">
<tr>
<td>First Name:</td>
<td><input type="text" name="FName"></td>
</tr>
<tr>
<td>Last Name: </td>
<td><input type="text" name="LName"></td>
</tr>
<tr>
<td>Title:</td>
<td><input type="text" name="Title" size="60"></td>
</tr>
<tr>
<td>E-Mail:</td>
<td><input type="text" name="Email" size="60"></td>
</tr>
<tr>
<td>Product/Franchise:</td>
<td> <select size="1" name="Product">
<option>Clinical
<option>Clinical Communications
<option>IT (e-business, solutions)
<option>Legal
<option>Marketing
<option>Medical Affairs
<option>Medical Education
<option>Public Relations
<option>Sales
<option>Other
</select>
</td>
</tr>
<tr>
<td>Department:</td>
<td><input type="text" name="Department" size="60"></td>
</tr>
<tr>
<td>Company</td>
<td><input type="text" name="Company" size="60"></td>
</tr>
</table>
<p>
<input type="Submit" name="Submit" value="Submit">
</p>
</div>
</form>
<?php
} else {
$Line1="$Name sent the following message:";
mail("myemail@email.com","$Sbjct","$Line1\nFName: $FName\nLName: $LName\nTitle: $Title\nEmail: $Email\nProduct: $Product\nDepartment: $Department\nCompany: $Company\n$Message","From: $Email");
print "<font face=Arial size=4>WE WILL GET BACK TO YOU</font><hr width=360 align=left>";
print "<a href=\"\"></a></font>";
} ?>