Ich weíß zwar nicht was man da viel Code braucht aber bitteschön: Und nicht wegen der formatierung meckern ... das geht mit CSS. <select name="ChooseJPType" class="Jackpot"> wäre dann das angesprochene Menü
<html>
<head> <title></title> <link rel="stylesheet" media="screen" type="text/css" href="styles.css"> <link rel="stylesheet" media="print, embossed" type="text/css" href="print.css"> <link rel="stylesheet" media="handheld" type="text/css" href="handheld.css"> </head>
<body> <center> <table class="MainHeadline"> <tr> <td>Jackpot Configuration</td> </tr> </table>
<table class="CfgMainHeadline"> <tr> <td colspan="2">Choose your Jackpot</td> </tr> <tr> <td> <table> <tr> <td class="CfgSubHeadline">New Jackpot </td> </tr> </table> <table> <tr> <td class="Descr">Jackpot Type:</td> <td class="Value"><select name="ChooseJPType" class="Jackpot"> <option>Linked Progressive Jackpot</option> <option>Single Machine Progressive</option> <option>Standart Mystery</option> <option>Price Mystery</option> <option>...</option></td> </tr> <tr> <td class="Descr">Jackpot Name:</td> <td class="Value"><input class="text" type="text" size="35" maxlength="32" name="MinDispVal" value=""> <input type="button" size="9" name="NewJP" value=" New "></td> </tr> </table> </td> <td> <table> <tr> <td class="CfgSubHeadline">Edit Jackpots </td> </tr> </table> <table> <tr> <td class="Descr">Jackpot Name:</td> <td class="Value"><select name="ChooseJPType" class="Jackpot"> <option>My 1st Jackpot</option> <option>My 2nd Jackpot</option> <option>My 3rd Jackpot</option> <option>My 4th Jackpot</option> <option>My 5th Jackpot</option></td> </tr> <tr> <td class="Descr">Jackpot Type:</td> <td class="Value"><input class="text" type="text" size="35" maxlength="32" name="MinDispVal" value=""> <input type="button" size="9" name="NewJP" value=" Edit "></td> </tr> </table> </td> </tr> </table>
<table class="CfgMainHeadline"> <tr> <td colspan="2">Global Config</td> </tr> <tr> <td> <table> <tr> <td class="Descr">Type of Jackpot:</td> <td class="Value"><input class="text" type="text" size="32" maxlength="32" name="JPName" value="Mystery"></td> </tr>
<tr> <td class="Descr">Jackpot Name:</td> <td class="Value"><input class="text" size="32" maxlength="32" name="JPType" value="This is my Mystery"></td> </tr>
<tr> <td class="Descr">Currency:</td> <td class="Value"><select name="CasinoCurrency"> <option>EUR</option> <option>RUR</option> <option>USD</option> <option selected><!--FUNCTIONCALL Web_CasinoCurrency --></option> </select><br></td> </tr>
<tr> <td class="Descr">Start Value:</td> <td class="Value"><input class="int" type="int" size="12" maxlength="16" name="StartVal" value="1.234.567,89"></td> </tr>
<tr> <td class="Descr">Restart Value:</td> <td class="Value"><input class="int" type="int" size="12" maxlength="16" name="RestartVal" value="123,45"></td> </tr>
</table> </td>
<td> <table> <tr> <td class="Descr">Start Time:</td> <td class="Value"><input class="int" type="int" size="8" maxlength="8" name="StartTimeD" value="27.13.03"> <input class="int" type="int" size="8" maxlength="8" name="StartTimeT" value="17:56.00"></td> </tr>
<tr> <td class="Descr">Reset Time:</td> <td class="Value"><input class="int" type="int" size="8" maxlength="8" name="ResetTime" value="700">sec</td> </tr>
</table> </td> </tr> </table>
<table class="CfgMainHeadline"> <tr> <td>Limits</td> </tr> <tr> <td> <table> <tr> <td class="Descr">Max. Value:</td> <td class="Value"><input class="int" type="int" size="12" maxlength="12" name="MaxVal" value="1.234.567,89"></td>
<td class="Descr">Min. Displayvalue:</td> <td class="Value"><input class="int" type="int" size="12" maxlength="12" name="MinDispVal" value="1.234.567,89"></td>
<td class="Descr">Max. Displayvalue:</td> <td class="Value"><input class="int" type="int" size="12" maxlength="12" name="MaxDispVal" value="1.234.567,89"></td> </tr> </table> </td> </tr> </table>
<table class="CfgMainHeadline"> <tr> <td>Progressive Config</td> </tr> <tr> <td> <table> <tr> <td class="Descr">Jackpot Level:</td> <td class="Value"><select width="3" name=""> <option> 1 </option> <option> 2 </option> <option> 3 </option> <option> ... </option></td> </tr> </table> </td> </tr> </table>
<table class="CfgMainHeadline"> <tr> <td>Basic Mystery Config</td> </tr> <tr> <td> <table> <tr> <td class="Descr">Minimum Mystery:</td> <td class="Value"><input class="int" type="int" size="12" maxlength="12" name="MysMin" value="1.234.567,89"></td>
<td class="Descr">End of Mystery:</td> <td class="Value"><input class="int" type="int" size="8" maxlength="8" name="MysEndDateD" value="27.10.03"> <input class="int" type="int" size="8" maxlength="8" name="MysEndDateT" value="15:30.00"></td> </tr>
<tr> <td class="Descr">Maximum Mystery:</td> <td class="Value"><input class="int" type="int" size="12" maxlength="12" name="MysMax" value="1.234.567,89"></td>
<td class="Descr">Maximum Hits:</td> <td class="Value"><input class="int" type="int" size="8" maxlength="8" name="" value="1.234"></td> </tr> </table> </td> </tr> </table>
</center>
</body>
</html>