<!--
function goto_URL()
{

var strURL = document.frmDropDown.apply.options[document.frmDropDown.apply.selectedIndex].value 
if(strURL != ''){
	
	myURL = strURL.toUpperCase();
		BankIndex = myURL.lastIndexOf("ILLINOISNATIONALBANK");   
		
		if(BankIndex >  0){
			var newWin = window.open(strURL, 'winNew', '',false);
			document.frmDropDown.apply.selectedIndex = 0;
		}
		else{
			Leaving(strURL);
		}
	}
}
function Leaving(url)
{
	if (confirm('\tYou are leaving Illinois National Bank\'s Web site.\n\nIllinois National Bank is not responsible for the content of the linked site.\n\n\tPlease confirm that you would like to continue.')) 
	{
		window.open(url);
	}
}
document.write('<FORM NAME="frmDropDown" style="margin: 0;">');
document.write('<SELECT NAME="apply" CLASS="apply" OnChange="goto_URL()" TARGET="_BLANK">');
document.write('<OPTION VALUE="" SELECTED>-Select One-</OPTION>');
document.write('<OPTION VALUE="https://www.illinoisnationalbank.com/login.html">Online Banking</OPTION>');
document.write('<OPTION VALUE="https://www.illinoisnationalbank.com/onlineserv/CM/">Cash Management</OPTION>');
document.write('<OPTION VALUE="https://www.tpars.com/prod/login.asp?fi=0728a">Online Trust Access</OPTION>');
document.write('<OPTION VALUE="https://www.mycardstatement.com">Credit Card Statement</OPTION>');
document.write('</SELECT></FORM>');
-->