<html>
<head>
<script language="javascript" src="switch_list.js"></script>
</head>
<body>
<form name="myForm" method="post" action="switch.htm">
<table cellpadding="0" cellspacing="3" border="0" width="70%" align="center">
<tr>
<td width="40%" align="center" style="font-weight:bold;">Good Stuff</td>
<td width="20%"> </td>
<td width="40%" align="center" style="font-weight:bold;">Bad Stuff</td>
</tr>
<tr>
<td width="40%" align="center">
<select name="box1" size="10" multiple="multiple">
<option value="Een site over sites">Sitemasters</option>
<option value="Site voor de php freaks onder ons">PHPFreakz</option>
<option value="Moederborden">Asus</option>
<option value="Processor bedrijf">Intel</option>
<option value="Tegenhanger van Intel">AMD</option>
</select>
</td>
<td width="20%" align="center" valign="middle">
<input type="button" value=">>" onclick="transport('myForm', 'box1', 'box2');" />
<br /><br />
<input type="button" value="<<" onclick="transport('myForm', 'box2', 'box1');" />
</td>
<td width="40%" align="center">
<select name="box2" size="10" multiple="multiple">
<option value="Speel muziek/film etc af">Windows Media Player</option>
<option value="Rijke gast">Bill Gates</option>
<option value="Bedrijf waar windows wordt gemaakt">Microsoft</option>
<option value="Beginnelingen">Noobs</option>
</select>
</td>
</tr>
</table>
</form>
</body>
</html>