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);
	}
}


function showDisclaimer(e , msg_type) {    
  var el = Event.element(e);
  if(el.tagName != 'A' && el.tagName != 'SELECT') el = el.up('a');

  url = "/exit?message=" + msg_type + "&redirect=" + (el.href || el.value);  
  window.location = url;
  
  return false;
}


function win1(fileName) {
     myFloater = window.open('','myWindow','scrollbars=no,status=no,width=500,height=500,left=400,top=100')
     myFloater.location.href = fileName;
}

