function open_window(url, size_x, size_y) {
	new_window = window.open(url, "venster", "width="+ size_x +",height="+ size_y +",toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,status=yes");
	new_window.focus();
}