/* BASIC JAVASCRIPT*/

function Logout(URL)
{
	if (confirm('Ben je zeker dat je wil uitloggen?')) {
	window.location.replace(URL);
	}
}
