 <!--
var agt=navigator.userAgent.toLowerCase();
var is_nav  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1) && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1) && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));
var is_major = parseInt(navigator.appVersion);
var is_minor = parseFloat(navigator.appVersion);
var is_nav6up = (is_nav && (is_major >= 5));
var is_ie4up  = (is_ie && (is_major >= 4));
var is_ie     = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));
var is_ie4up  = (is_ie && (is_major >= 4));
var lastclicked = "none";

var pointcursor = "";
if(is_nav6up){pointcursor = "pointer";}
if(is_ie4up){pointcursor = "hand";}

// deze functie wordt bij het inladen van een pagina aangeroepen en zorgt dat de juiste menu knop ingedrukt staat
function check_button(id){
	if (id!='none' && id!='' && id!='contact' && id!='sitemap' && id!='search'){
		document.getElementById(id).className = "menu_buttons menu_over";
		lastclicked = document.getElementById(id);
	}
}

//****************************************//
// functies voor het menu aan de rechterkant
//****************************************//

function check_menu_over(td){
	td.className = "menu_buttons menu_over";
	td.style.cursor = pointcursor;
}

function check_menu_out(td){
	if (td != lastclicked){
		td.className = "menu_buttons menu_out";
	}
}

//****************************************//
// functies voor de 2 buttons in de header
//****************************************//

// plaatje swappen bij mouseOver
function check_over(image){
	re=new RegExp('_0.gif','gi');
	image.src=image.src.replace(re,"_1.gif");
}
// plaatje swappen bij mouseOut
function check_out(image){
	re=new RegExp('_1.gif','gi');
	image.src=image.src.replace(re,"_0.gif");
}

//****************************************//
// een div verbergen of laten zien als een checkbox aan of uit wordt gevinkt
//****************************************//
function swap_div(button){
	if(document.getElementById('div_'+button.id).style.display=='none'){
		document.getElementById('div_'+button.id).style.display='block';
	} else {
		document.getElementById('div_'+button.id).style.display='none';
	} 
}


//****************************************//
// Hieronder staan 2 functies voor popup images
//****************************************//
imagename = '';
var lrgewin=null;

function enlarge(imgnme) {
	if(lrgewin && !lrgewin.closed) { lrgewin.close(); }
	
    lrgewin = window.open("about:blank","","width=155,height=116,status=no,toolbar=no,scrollbars=no,menubar=no,location=no,resizable=no");
    imagename = imgnme;
    setTimeout('update()',500);
}

function update() {
    doc = lrgewin.document;
    doc.open('text/html');
    doc.write('<html><head><title>Bumicom<\/title><\/head><body marginheight=0 marginwidth=0 topmargin=0 rightmargin=0 leftmargin=0 bgcolor="#FFFFFF" background="'+BASE_URL+'images/loading.gif">');
	doc.write('<a href="javascript:window.close();"><img name="FullImage" border=0 src="'+imagename + '" onLoad="window.resizeTo(FullImage.width+10, FullImage.height+59)"><a/>');
    doc.write('<\/body><\/html>');
    doc.close();
}

//-->