﻿function stuurDoor() {
	var url = window.location.href; 
	var anchorindex = url.lastIndexOf("?");
	if(anchorindex != -1) {  
		window.open(url+'&stuurdoor=true','_self');
	}
	else {
		window.open(url+'?stuurdoor=true','_self');
	}
}
