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


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

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

			return(alert("Please be advised that you are leaving Premier Bank's website. This link is provided as a courtesy.  Premier Bank does not endorse or control the content of third party websites."));

		});
	});

	confirmLinks.each(function(element, i) {
		element.addEvent('click', function( event ){
    	event = new Event(event);
			if( confirm("Please be advised that you are leaving Premier Bank's website. This link is provided as a courtesy.  Premier Bank does not endorse or control the content of third party websites.") ) {
				return true;
			} else {
				event.stop();
				return false;
			}

		});
	});
 	
 
});
