<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
<script type="text/javascript">
function toon()
{
var naam,leeftijd,geslacht,dropdown,niveau,sport
if (document.forms.joeri.geslacht[0].checked)
{
geslacht = "m"
}
else
{
geslacht = "v"
}
if (document.forms.joeri.niveau[0].checked){
niveau = "Beginnend"
}else{
if (document.forms.joeri.niveau[1].checked){
niveau="Middelmatig"
}else{
niveau="Gevorderd"
}
}
naam = document.forms.joeri.naam.value
leeftijd = document.forms.joeri.leeftijd.value
dropdown=document.forms.joeri.Select1.value
[COLOR=DarkOrange]sport=document.forms.joeri.seclteren.value[/COLOR]
window.alert("Naam : " + naam + "\n" + "Leeftijd : " + leeftijd + "\n" + "Geslacht : " + geslacht + "\n" + "Verblijfplaats : " + dropdown + "\n" + "Niveau:" + niveau + "\n" + "Sport:" + sport );
}
</script>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
</head>
<body>
<form id="joeri" name="joeri">
<TABLE border="0">
<tr>
<th>
<b><i>Naam:</i></b><input id="naam" type="text" NAME="naam">
</th>
<th>
</th>
<th>
<b><i>Leeftijd</i></b><input id="leeftijd" type="text" NAME="leeftijd">
</th>
</tr>
<tr>
<td>
Geslacht
</td>
<td>
Verblijfplaats
</td>
</tr>
<tr>
<td style="HEIGHT: 22px">
<input type="radio" name="geslacht" value="m" ID="Radio1">Man
</td>
<td style="HEIGHT: 22px">
<select size="1" name="dropdown" ID="Select1">
<option value="België" selected>België</option>
<option value="Nederland">Nederland</option>
<option value="Duitsland">Duitsland</option>
<option value="Frankrijk">Frankrijk</option>
</select>
</td>
</tr>
<tr>
<td><input type="radio" name="geslacht" value="v" ID="Radio2">Vrouw</td>
</tr>
<tr>
<td></td>
<td></td>
<td><input type="submit" name="verstuur" value="Toon profiel" ID="Submit1" onclick="toon()"></td>
</tr>
<tr>
<td>Sport</td>
<td>Atletisch niveau</td>
</tr>
<tr>
<td></td>
<td></td>
<td><input type="submit" name="verstuur" value="Nieuw profiel" ID="Submit2">
</td>
</tr>
<tr>
<td>
<input type="checkbox" name="seclteren" value="Lopen" ID="Checkbox1">Lopen<BR>
<input type="checkbox" name="seclteren" value="Wandelen" ID="Checkbox2">Wandelen<BR>
<input type="checkbox" name="seclteren" value="Fietsen" ID="Checkbox3">Fietsen<BR>
<input type="checkbox" name="seclteren" value="Zwemmen" ID="Checkbox4">Zwemmen<BR>
<input type="checkbox" name="seclteren" value="Skiën" ID="Checkbox5">Skiën<BR>
<input type="checkbox" name="seclteren" value="Inline Skating" ID="Checkbox6">Inline Skating<BR>
</td>
<TD width="442">
<input type="radio" name="niveau" value="m" ID="Radio3">Beginnend<BR>
<input type="radio" name="niveau" value="m" ID="Radio4">Middelmatig<BR>
<input type="radio" name="niveau" value="m" ID="Radio5">Gevorderd<BR>
</TD>
<TD></TD>
</tr>
</TD></TABLE>
</body>
</form>
</html>