<!-- Hide from older browsers
function SwitchImg()

{ //start
  var rem, keep=0, store, obj, switcher=new Array, history=document.Data;
    for (rem=0; rem < (SwitchImg.arguments.length-2); rem+=3) {
    	store = SwitchImg.arguments[(navigator.appName == 'Netscape')?rem:rem+1];
    if ((store.indexOf('document.layers[')==0 && document.layers==null) ||
        (store.indexOf('document.all[')==0 && document.all==null))
         store = 'document'+store.substring(store.lastIndexOf('.'),store.length);
         obj = eval(store);
    if (obj != null) {
   	   switcher[keep++] = obj;
      switcher[keep++] = (history==null || history[keep-1]!=obj)?obj.src:history[keep];
      obj.src = SwitchImg.arguments[rem+2];
  } }
  document.Data = switcher;
} //end

function RestoreImg()
{ //start
  if (document.Data != null)
    for (var rem=0; rem<(document.Data.length-1); rem+=2)
      document.Data[rem].src=document.Data[rem+1];
} //end

// end hiding contents -->

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com)
//For full source code, visit http://www.dynamicdrive.com

var message="First National Bank has disabled your computer's 'right-click' function on this web site for security purposes.";
///////////////////////////////////
function clickIE() {if (document.all) {alert(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {alert(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// end Disable right mouse click Script

// Begin leaving site disclaimer dialog
	function external_disclaimer(goHere){
		message  = "By following this link, you are leaving the First National Bank web site.\n";
		message += "The page you have selected is provided for your information and\n";
		message += "convenience but is located outside the control of First National Bank.\n";
		message += "First National Bank is not responsible for the quality, content, accuracy,\n";
		message += "reliability, or propriety of the information contained on this\n";
		message += "external website or any connected hyperlinks. Inclusion of a link\n"; 
		message += "on the First National Bank site does not imply any endorsement,\n";
		message += "investigation, verification, or monitoring by First National Bank of any\n";
		message += "information in any hyperlinked site. In no event shall First National\n";
		message += "Bank be responsible for your use of a hyperlinked site.\n";
  
		if (confirm(message)){
			window.open(goHere, '_blank');
		}
	}
// End leaving site disclaimer dialog