var message			= "Visalia Community Bank reminds you that sending e-mail to this e-mail address is not necessarily secure against interception. If your information is very sensitive, or includes personal or confidential information, such as your account, ATM, check card or Social Security number, you should either send it to us using the secure-mail link that is available through our Internet Banking product or send it to us by postal mail.";

function warn() {
	return(alert(message));
}

window.addEvent('domready', function() {


	var alertLinks 		= $$( "a.warn" );
	var confirmLinks 	= $$( "a.confirm" );
	

	alertLinks.each(function(element, i) {
		element.addEvent('click', warn);
	});

	confirmLinks.each(function(element, i) {
		element.addEvent('click', function( event ){
    	event = new Event(event);
			if( confirm(message) ) {
				return true;
			} else {
				event.stop();
				return false;
			}

		});
	});
 	
 
});
