<!-- Path services

var maand_naam = new Array(13);
maand_naam[0] = "January";
maand_naam[1] = "February";
maand_naam[2] = "March";
maand_naam[3] = "April";
maand_naam[4] = "May";
maand_naam[5] = "June";
maand_naam[6] = "July";
maand_naam[7] = "August";
maand_naam[8] = "September";
maand_naam[9] = "October";
maand_naam[10] = "November";
maand_naam[11] = "December";
var maand_naam_nl = new Array(13);
maand_naam_nl[0] = "januari";
maand_naam_nl[1] = "februari";
maand_naam_nl[2] = "maart";
maand_naam_nl[3] = "april";
maand_naam_nl[4] = "mei";
maand_naam_nl[5] = "juni";
maand_naam_nl[6] = "juli";
maand_naam_nl[7] = "augustus";
maand_naam_nl[8] = "september";
maand_naam_nl[9] = "oktober";
maand_naam_nl[10] = "november";
maand_naam_nl[11] = "december";

function add_between_large()
{
    document.write("");
}

function add1()
{
document.writeln("<table width=\"100%\" border=0 CELLSPACING=0 CELLPADDING=0>");
}

function addc1(s)
{
document.writeln("<tr><td class=" + s +">&nbsp;</td></tr>");
}

function add_between_small()
{
add1();
addc1("stxt4");
addc1("stxt2");
addc1("stxt4");
document.writeln("</table");
}

function add_begin_row()
{
    document.write("<tr><td>");
}
function add_end_row()
{
    document.write("</td></tr>");
}
function add_naar_boven_row()
{
    add_begin_row();
    add_naar_boven();
    add_end_row();
}
function add_naar_boven_row_nl()
{
    add_begin_row();
    add_naar_boven_nl();
    add_end_row();
}
function add_einde_document()
{
    document.write("<TABLE WIDTH=100%>");
    add_naar_boven_row();
    document.write("<tr><td class=\"etxt\">End of document");
    document.write("</td><td class=\"etxt\"><INPUT TYPE=\"button\" VALUE=\"BACK\" onClick=\"history.back()\"></td><td class=\"etxt\"><INPUT TYPE=\"button\" VALUE=\"FORWARD\" onClick=\"history.forward()\"></td>");
    document.write("<td class=\"etxt\"><a href=\"index.html#M101\">Contact</a></td></tr></table>");
}
function add_einde_document_nl()
{
    document.write("<TABLE WIDTH=100%>");
    add_naar_boven_row_nl();
    document.write("<tr><td class=\"etxt\">Einde document");
    document.write("</td><td class=\"etxt\"><INPUT TYPE=\"button\" VALUE=\"Vorige\" onClick=\"history.back()\"></td><td class=\"etxt\"><INPUT TYPE=\"button\" VALUE=\"Volgende\" onClick=\"history.forward()\"></td>");
    document.write("<td  class=\"etxt\"><a href=\"index.html#M101\">Contact</a></td></tr></table>");
}

function add_naar_boven_col()
{
    document.write("<td>");
    add_naar_boven();
    document.write("</td>");
}
function add_naar_boven()
{
    document.write("<A HREF=\"#top\">Upstairs</A>");
}
function add_naar_boven_nl()
{
    document.write("<A HREF=\"#top\">Naar boven</A>");
}

function JumpFromForm(form,element)
{
     window.location = form.elements[element].options[form.elements[element].selectedIndex].value;
}
function controle_alleen_cijfers(waarde,lengte)
{
    if (lengte>0)
        if (waarde.length!=lengte) return 0;        
    return waarde.search("[^1234567890]");
}

// End of path services  -->
