function openLoginWindow () {
	var accessForm = document.ebanking;
	var optionIndex = accessForm.service.selectedIndex;
	var serviceLink = accessForm.service.options[optionIndex].value;
	if (serviceLink != null && serviceLink.length > 0) {
		window.open(serviceLink);
	}
}