// voor subnavigatie onderdeel formulieren

form_opbouw = ("<a class=\"subnav\" href=\"forms_opbouw.html\">&nbsp;&#183;&nbsp;Opbouw van een formulier<\/a><br>");
button = ("<a class=\"subnav\" href=\"forms_elem_button.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;button&gt;<\/a><br>");
fieldset = ("<a class=\"subnav\" href=\"forms_elem_fieldset.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;fieldset&gt;<\/a><br>");
label = ("<a class=\"subnav\" href=\"forms_elem_label.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;label&gt;<\/a><br>");
legend = ("<a class=\"subnav\" href=\"forms_elem_legend.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;legend&gt;<\/a><br>");
inp = ("<a class=\"subnav\" href=\"forms_elem_input.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;input&gt;<\/a><br>");
opt = ("<a class=\"subnav\" href=\"forms_elem_optgroup.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;optgroup&gt;<\/a><br>")
sel = ("<a class=\"subnav\" href=\"forms_elem_select.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;select&gt;<\/a><br>");
textarea = ("<a class=\"subnav\" href=\"forms_elem_textarea.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;textarea&gt;<\/a><br>");
verstuur = ("<a class=\"subnav\" href=\"forms_versturen.html\">&nbsp;&#183;&nbsp;Versturen formulier<\/a><br>");
webmeesform = ("<a class=\"subnav\" href=\"reageer.html\">&nbsp;&#183;&nbsp;Reactieformulier Webmees<\/a><br>");
resultaat = ("<a class=\"subnav\" href=\"forms_resultaat.html\">&nbsp;&#183;&nbsp;Resultaat ingevuld formulier<\/a><br>");

// voor subnavigatie onderdeel frames

frames_opbouw = ("<a class=\"subnav\" href=\"frames_opbouw.html\">&nbsp;&#183;&nbsp;Opbouw van frames<\/a><br>");
fr_nesten = ("<a class=\"subnav\" href=\"frames_opbouw_nesten.html\">&nbsp;&#183;&nbsp;Nesten van frames<\/a><br>");
fr_inline = ("<a class=\"subnav\" href=\"iframes.html\">&nbsp;&#183;&nbsp;Inline frames<\/a><br>");
fr_noframes = ("<a class=\"subnav\" href=\"frames_noframes.html\">&nbsp;&#183;&nbsp;&lt;noframes&gt;<\/a><br>");

// voor subnavigatie onderdeel tabellen

tabel_opbouw  = ("<a class=\"subnav\" href=\"tabellen_opbouw_basis.html\">&nbsp;&#183;&nbsp;Opbouw van een tabel<\/a><br>");
tabcomplex = ("<a class=\"subnav\" href=\"tabellen_opbouw_complex.html\">&nbsp;&#183;&nbsp;Gecompliceerde tabel<\/a><br>");
tabback = ("<a class=\"subnav\" href=\"tabellen_opbouw_background.html\">&nbsp;&#183;&nbsp;Backgrounds<\/a><br>");
tabcol = ("<a class=\"subnav\" href=\"tabellen_opbouw_col.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;col&gt;<\/a><br>");
tabcolgroup = ("<a class=\"subnav\" href=\"tabellen_opbouw_colgroup.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;colgroup&gt;<\/a><br>");
tabtbody = ("<a class=\"subnav\" href=\"tabellen_opbouw_tbody.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;tbody&gt;<\/a><br>");
tabtfoot = ("<a class=\"subnav\" href=\"tabellen_opbouw_tfoot.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;tfoot&gt;<\/a><br>");
tabthead = ("<a class=\"subnav\" href=\"tabellen_opbouw_thead.html\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;thead&gt;<\/a><br>");
tabmaat = ("<a class=\"subnav\" href=\"tabellen_opbouw_maat.html\">&nbsp;&#183;&nbsp;Op maat maken<\/a><br>");
tabnesten = ("<a class=\"subnav\" href=\"tabellen_opbouw_nesten.html\">&nbsp;&#183;&nbsp;Nesten van tabellen<\/a><br>");


d.write("<div class=\"rand\"><h4>Snel naar ...<\/h4>");

d.write("<div class=\"links\">");

if (d.title == 'HTML: het ABC van het web' + wm)
{
d.write("<div class=\"actief\">Introductie &#171;<\/div>");
}
else 
{
d.write("<a href=\"html.html\">Introductie<\/a><br>");
}

if (d.title == 'Controle van HTML' + wm)
{
d.write("<div class=\"actief\">Controle &#171;<\/div>");
}
else 
{
d.write("<a href=\"html_controle.html\">Controle<\/a><br>");
}


if (d.title == 'Editors voor HTML' + wm)
{
d.write("<div class=\"actief\">Editors &#171;<\/div>");
}
else 
{
d.write("<a href=\"editors.html\">Editors<\/a><br>");
}

if (d.title == 'Formulieren' + wm)
{
d.write("<div class=\"actief\">Formulieren &#171;<\/div>");
}
else 
{
d.write("<a href=\"forms.html\">Formulieren<\/a><br>");
}

if (d.title == 'Opbouw van een formulier' + wm)
{
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Opbouw van een formulier &#171;<\/div>" + button + fieldset + label + legend + inp + opt + sel + textarea + verstuur + webmeesform + resultaat);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een formulier: <button>' + wm)
{
d.write("" + form_opbouw);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;button&gt; &#171;</div>" + fieldset + label + legend + inp + opt + sel + textarea + verstuur + webmeesform + resultaat);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een formulier: <fieldset>' + wm)
{
d.write("" + form_opbouw + button);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;fieldset&gt; &#171;</div>" + label + legend + inp + opt + sel + textarea + verstuur + webmeesform + resultaat);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een formulier: <label>' + wm)
{
d.write("" + form_opbouw + button + fieldset);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;label&gt; &#171;</div>" + legend + inp+ opt + sel + textarea + verstuur + webmeesform + resultaat);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een formulier: <legend>' + wm)
{
d.write("" + form_opbouw + button + fieldset + label);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;legend&gt; &#171;</div>" + inp + opt + sel + textarea + verstuur + webmeesform + resultaat);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een formulier: <input>' + wm)
{
d.write("" + form_opbouw + button + fieldset + label + legend);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;input&gt; &#171;</div>" + opt + sel + textarea + verstuur + webmeesform + resultaat);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een formulier: <optgroup>' + wm)
{
d.write("" + form_opbouw + button + fieldset + label + legend + inp );
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;optgroup&gt; &#171;<\/div>" + sel + textarea + verstuur + webmeesform + resultaat);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een formulier: <select>' + wm)
{
d.write("" + form_opbouw + button + fieldset + label + legend + inp + opt);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;select&gt; &#171;</div>" + textarea + verstuur + webmeesform + resultaat);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een formulier: <textarea>' + wm)
{
d.write("" + form_opbouw + button + fieldset + label + legend + inp + opt + sel);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;textarea&gt; &#171;</div>" + verstuur + webmeesform + resultaat);
}
else 
{
d.write("");
}

if (d.title == 'Het versturen van een formulier' + wm)
{
d.write("" + form_opbouw + button + fieldset + label + legend + inp + opt + sel + textarea);
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Versturen formulier &#171;<\/div>" + webmeesform + resultaat);
}
else 
{
d.write("");
}

if (d.title == 'Resultaat van een ingevuld formulier' + wm)
{
d.write("" + form_opbouw + button + fieldset + label + legend + inp + opt + sel + textarea + verstuur + webmeesform);
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Resultaat formulier &#171;<\/div>");
}
else 
{
d.write("");
}

// onderdeel frames

if (d.title == 'Frames' + wm)
{
d.write("<div class=\"actief\">Frames &#171;<\/div>");
}
else 
{
d.write("<a href=\"frames.html\">Frames<\/a><br>");
}

if (d.title == 'Opbouw van frames' + wm)
{
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Opbouw van frames &#171;<\/div>" + fr_nesten + fr_inline + fr_noframes);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van frames: nesten' + wm)
{
d.write("" + frames_opbouw);
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Nesten van frames &#171;<\/a><\/div>" + fr_inline + fr_noframes);
}
else 
{
d.write("");
}

if (d.title == 'Inline Frames' + wm)
{
d.write("" + frames_opbouw + fr_nesten);
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Inline frames<\/a><\/div>" + fr_noframes);

}
else 
{
d.write("");
}

if (d.title == 'Opbouw van frames: <noframes>' + wm)
{
d.write("" + frames_opbouw + fr_nesten + fr_inline);
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;&lt;noframes&gt;<\/a><\/div>");

}
else 
{
d.write("");
}

if (d.title == 'HTML codes' + wm)
{
d.write("<div class=\"actief\">HTML codes &#171;<\/div>");
}

else if (d.title == 'Alle HTML 4.01 codes op een rij' + wm)
{
d.write("<div class=\"actief\">HTML codes &#171;<\/div>");
}

else 
{
d.write("<a href=\"html_codes.html\">HTML codes<\/a><br>");
}

if (d.title == 'Hulp voor HTML' + wm)
{
d.write("<div class=\"actief\">Hulp &#171;<\/div>");
}
else 
{
d.write("<a href=\"html_hulp.html\">Hulp<\/a><br>");
}

if (d.title == 'HTML Lijsten' + wm)
{
d.write("<div class=\"actief\">Lijsten &#171;<\/div>");
}
else 
{
d.write("<a href=\"lijsten.html\">Lijsten<\/a><br>");
}

d.write("<a href=\"pl_intro.html\">Plaatjes<\/a><br>");


// onderdeel tabellen

if (d.title == 'Tabellen' + wm)
{
d.write("<div class=\"actief\">Tabellen &#171;<\/div>");
}
else 
{
d.write("<a href=\"tabellen.html\">Tabellen<\/a><br>");
}

if (d.title == 'Opbouw van een tabel' + wm)
{
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Opbouw van tabellen &#171;<\/div>" + tabmaat + tabcomplex + tabcol + tabcolgroup + tabtbody + tabtfoot + tabthead + tabback + tabnesten);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een complexe tabel' + wm)
{
d.write("" + tabel_opbouw + tabmaat);
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Gecompliceerde tabel&#171;<\/div>" + tabcol + tabcolgroup + tabtbody + tabtfoot + tabthead +  tabnesten);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een tabel: op maat maken' + wm)
{
d.write("" + tabel_opbouw);
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Op maat maken&#171;<\/div>"  + tabcomplex + tabcol + tabcolgroup + tabtbody + tabtfoot + tabthead + tabback + tabnesten);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een tabel: <Col>' + wm)
{
d.write("" + tabel_opbouw + tabmaat + tabcomplex);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;col&gt; &#171;<\/div>"  + tabcolgroup + tabtbody + tabtfoot + tabthead + tabback + tabnesten);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een tabel: <colgroup>' + wm)
{
d.write("" + tabel_opbouw + tabmaat + tabcomplex + tabcol);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;colgroup&gt; &#171;<\/div>" + tabback + tabnesten);
}
else 
{
d.write("");
}


if (d.title == 'Opbouw van een tabel: <tbody>' + wm)
{
d.write("" + tabel_opbouw + tabmaat + tabcomplex + tabcol);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;tbody&gt; &#171;<\/div>" + tabtfoot + tabthead + tabback + tabnesten);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een tabel: <tfoot>' + wm)
{
d.write("" + tabel_opbouw + tabmaat + tabcomplex + tabcol + tabtbody);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;tfoot&gt; &#171;<\/div>" + tabthead + tabback + tabnesten);
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een tabel: <thead>' + wm)
{
d.write("" + tabel_opbouw + tabmaat + tabcomplex + tabcol + tabtbody + tabtfoot);
d.write("<div class=\"subnavactief\">&nbsp;&nbsp;&nbsp;&#183;&nbsp;&lt;thead&gt; &#171;<\/div>" + tabback + tabnesten);
}
else 
{
d.write("");
}



if (d.title == 'Opbouw van een tabel: nesten' + wm)
{
d.write("" + tabel_opbouw + tabmaat + tabcomplex + tabcol + tabcolgroup + tabtbody + tabtfoot + tabthead + tabback);
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Nesten van tabellen &#171;<\/div>");
}
else 
{
d.write("");
}

if (d.title == 'Opbouw van een tabel: backgrounds' + wm)
{
d.write("" + tabel_opbouw + tabmaat + tabcomplex + tabcol + tabcolgroup);
d.write("<div class=\"subnavactief\">&nbsp;&#183;&nbsp;Backgrounds &#171;<\/div>" + tabnesten);
}
else 
{
d.write("");
}

d.write("<\/div><\/div>");
d.write("<br>");

if (d.title == 'HTML nieuwsgroepen' + wm)
{
d.write("")
}

else if (d.title == 'Opbouw van een formulier: <legend>' + wm)

{
d.write("")
}

else if (d.title == 'Opbouw van een formulier: <optgroup>' + wm)

{
d.write("")
}


else
{
d.write("<div class=\"rand\"><h4>Usenet &amp; HTML<\/h4>");
d.write("<div class=\"links\"><a href=\"html_usenet.html\">Nieuwsgroepen<\/a></div>");
d.write("<\/div>");
d.write("<br>");
}

if (d.title == 'Hulp voor HTML' + wm)
{
d.write("")
}

else if (d.title == 'Resultaat van een ingevuld formulier' + wm)
{
d.write("")
}

else if (d.title == 'Opbouw van een formulier: <fieldset>' + wm)
{
d.write("")
}

else if (d.title == 'Opbouw van een formulier: <legend>' + wm)
{
d.write("")
}


else
{
d.write("<div class=\"rand\"><h4>Zie ook:<\/h4>");
d.write("<div class=\"links\"><a href=\"dhtml.html\">DHTML<\/a><br>");
d.write("<a href=\"smil.html\">SMIL<\/a><br>");
d.write("<a href=\"xhtml.html\">XHTML<\/a><br>");
d.write("<a href=\"xml.html\">XML<\/a><\/div>");
d.write("<\/div><br>");
}


