function showMesaPopup(url, width, height, resizable, scrollable, x, y) {
	var attributes="width=" + width +
		",height=" + height +
		",resizable=" + (resizable ? "yes" : "no") +
		",scrollbars=" + (scrollable ? "yes" : "no") +
		",modal=yes";
	//als x of y leeg zijn zorg er dan voor dat het scherm in het centrum wordt geplaatst.
	if (!x){
		width=parseInt(width);
		x = (screen.width-width) / 2;
		x+="px";
	}
	attributes+=",left="+x;
	if (!y){
		height=parseInt(height);
		y = (screen.height - height)/2;
		y+= "px";
	}
	attributes+=",top="+y;
	var w = window.open(url, "mesaPopup", attributes);
	if(window.focus) {
		w.focus();
	}
}