In IE on a MAC since the pulldown menu is auto generated by a php scrip the row height for the menus is the same as however many elements are in the menu. Instead of just a single one. Any Ideas on this. Below is the code generated by the php page.
Netscape work fine.
Thanks
Robert
<head>
<title>New Record</title>
<link href="invstyle.css" rel="StyleSheet" type="text/css">
</head>
<body>
<p></p>
<form method="post" action="BC_Update.php">
<CENTER><table border="0"cellspacing="3"cellpadding="3">
<tr>
<td>Asset tag number:</td>
<td ><input name="asset" type="text" size=10 maxlength=255></td>
</tr>
<tr height="18">
<td >Computer Type:</td>
<td><SELECT NAME="comp_type" SIZE="1">
<OPTION VALUE=WIN IBM PC 300PL DESKTOP>WIN IBM PC 300PL DESKTOP</OPTION><br>
<OPTION VALUE=IBM LAP TOP 2626-HOU>IBM LAP TOP 2626-HOU</OPTION><br>
<OPTION VALUE=MAC G3 PC DESKTOP LEASED>MAC G3 PC DESKTOP LEASED</OPTION><br>
</select>
</td>
</tr>
<tr>
<td >Complete Serial #:</td>
<td width><input name="serial" type="text" size=30 maxlength=255></td>
</tr>
<tr>
<td >Name of User:<BR>If Known</td>
<td ><input name="name" type="text" size=35 maxlength=255 value=""></td>
</tr>
<tr>
<td >Position Number:<BR>If Known</td>
<td ><input name="pos_num" type="text" size=10 maxlength=255 value=""></td>
</tr>
<tr>
<td >Position Title:</td>
<td ><input name="title" type="text" size=40 maxlength=255 value=""></td>
</tr>
<tr>
<td >Department Number:<BR>I.E. LSC 216031</td>
<td ><input name="dept_num" type="text" size=15 maxlength=255 value=""></td>
</tr>
<tr>
<td >Deparment Name:</td>
<td ><select name="dept_name" size=1>
<OPTION VALUE=Accounting Department,Car>Accounting Department,Car</OPTION><br>
<OPTION VALUE=Business Law Department>Business Law Department</OPTION><br>
<OPTION VALUE=Carroll Graduate School O>Carroll Graduate School O</OPTION><br>
<OPTION VALUE=Carroll School Of Managem>Carroll School Of Managem</OPTION><br>
<OPTION VALUE=CSOM Computer Science Dep>CSOM Computer Science Dep</OPTION><br>
<OPTION VALUE=Finance Department>Finance Department</OPTION><br>
<OPTION VALUE=Finance, Carroll Graduate>Finance, Carroll Graduate</OPTION><br>
<OPTION VALUE=Management Center>Management Center</OPTION><br>
<OPTION VALUE=Marketing Department>Marketing Department</OPTION><br>
<OPTION VALUE=Operations & Strategic Ma>Operations & Strategic Ma</OPTION><br>
<OPTION VALUE=Organizational Studies De>Organizational Studies De</OPTION><br>
<OPTION VALUE=Small Business Developmen>Small Business Developmen</OPTION><br>
</select>
</td>
</tr>
<tr>
<td >New Record?:</td>
<td >
<input name="new_rec" TYPE=RADIO VALUE="Yes" checked>Yes
<input name="new_rec" TYPE=RADIO VALUE="No">No
</td>
</tr>
<tr>
<td >Location of Machine:</td>
<td ><input name="new_loc" type="text" size=40 maxlength=255 value=""></td>
</tr>
<tr>
<td >Other Notes:</td>
<td ><textarea name="othernote" rows=5 cols=40 wrap=soft></textarea>
</td>
</tr>
<tr>
<td >Is this a Completed Record?:</td>
<td >
<input name="comp_rec" TYPE=RADIO VALUE="Yes">Yes
<input name="comp_rec" TYPE=RADIO VALUE="No" CHECKED >No
</td>
</tr>
<tr>
<td > </td>
<td align="left"><input type="submit" name="submit" value="Enter"> <input type="reset" name="reset"></td>
</tr>
</table>
</CENTER>
</form>
</body>