function NewWindow(mypage, myname, w, h, scroll)
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'menubar=yes,height=' + h + ',width=' + w + ',top=' + wint + ',left=' + winl + ',scrollbars=' + scroll + ',resizable="yes"'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4)
	{
		win.window.focus();
	}
}

function SubmitForm()
{
	window.open('', 'actueel', 'menubar=yes');
	document.UserLogin.submit();
	document.location.href = document.location.href;
}

function OpenWin()
{
	NewWindow('https://www.afincenter.nl/mijnkluis/Prelogin/ForgetPassword/NewPassword.asp?Client=DHS', 'actueel', '500', '150', 'no');
}

