<!-- Begin HEADER opties code

// Alleen kleine letters voor opties


var flashcolor		= "020266"	// FLASH achtergrond kleur
var color			= "020266"	// Header achtergrond kleur
var flashheight		= "50"		// Hoogte flash animatie (pixels)
var flashwidth		= "500"		// Breedte flash animatie (pixels)

var lines	 		= "ja"		// Toon lijnen onder en boven flash logo
var linecolor		= "000000"	// Kleur van de lijnen
var lineheight		= "1"		// Hoogte van de lijnen in pixels
var showdate		= "ja"		// Toon datum

var showsearch		= "ja"		// Toon zoekmogelijkheid
var searchtext		= "Zoeken:"// Tekst voor de zoekmogelijkheid

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" BGCOLOR="#'+color+'">');

   if (lines == "ja") {
document.write('<tr><td height="'+lineheight+'" bgcolor="#'+linecolor+'" colspan="2">');
document.write('<img src="images/spacer.gif" width="15" height="'+lineheight+'"><br>');
}
document.write('</td></tr><tr><td ALIGN="LEFT">');
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="../../../download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0/#version=6,0,0,0/index.php" WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" id="logo" ALIGN="">');
document.write('<PARAM NAME=movie VALUE="support-files/logo.swf">');
document.write('<PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#'+flashcolor+'>');
document.write('<EMBED src="support-files/logo.swf" quality=high bgcolor=#'+flashcolor+'  WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" NAME="logo" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="../../../www.macromedia.com/go/getflashplayer">');
document.write('</EMBED>');
document.write('</OBJECT><br>');

document.write('</td><td align="right" valign="middle">');

// Start zoekscherm

   if (showsearch == "ja") {
document.write('<TABLE cellpadding="0" cellspacing="2" border="0"><tr><td colspan="2" class="search-font" nowrap>')
document.write(''+searchtext+'<br>')
document.write('</td><td align="left">')
document.write('<form action="sessearch.php" name="f" method= "GET" target="_self" style="margin: 0px">')
document.write('<input size="15" name="q" value="" class="searchform">')
document.write('<input type="hidden" name="op" value="and">')
document.write('</td><td align="left">')
document.write('<input type="image" SRC="images/search-off.gif" border="0" onmouseover="this.src=\'images/search-on.gif\'" onmouseout="this.src=\'images/search-off.gif\'" alt="Zoeken" style="background-color: #020266; margin-right:7px"><br>')
document.write('</form>')
document.write('</td></tr></table>')
}

// Einde zoekformulier

// Onderste regel

   if (lines == "ja") {
document.write('</td></tr><tr><td height="'+lineheight+'" bgcolor="#'+linecolor+'" colspan="2">');
document.write('<img src="images/spacer.gif" width="15" height="'+lineheight+'"><br>');
}
document.write('</td></tr></table>');

// Start datum script

   if (showdate == "ja") {
document.write('<div id="date-location">');
var d=new Date()
var weekday=new Array("Zondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrijdag","Zaterdag")
var monthname=new Array("januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december")
document.write("<span class=\"menu_horz\"><nobr>" + weekday[d.getDay()] + ", ")
document.write(d.getDate() + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');
}

//  Einde -->