function MM_jumpMenu(targ,selObj,restore){ //v3.0
//alert(selObj.options[selObj.selectedIndex].value);

	//Restrict the redirection 
	if( selObj.options[selObj.selectedIndex].value == 'Select a service' ) {
		jQuery('#routingNumberShow').hide('slow');
		return false;
	}
	
	//Display the phone number below the dropdown
	if( selObj.options[selObj.selectedIndex].value == 'routingNumber' ) {
	
		jQuery('#routingNumberShow').slideToggle('slow');
		return false;
	} else {
		
		jQuery('#routingNumberShow').hide('slow');
	}


	if( selObj.options[selObj.selectedIndex].value == 'pdf/FNB 3rd Qtr Report 2011.pdf' ) {

  		window.open(selObj.options[selObj.selectedIndex].value);
  		if (restore) selObj.selectedIndex=0;	
  		return false;
	}
	
	//alert(selObj.options[selObj.selectedIndex].value);
	//return false;

	if( selObj.options[selObj.selectedIndex].value == 'Business Banking' ) {
	
		//eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");  		
  		window.open("https://www.fnb-sf.net/onlineserv/CM/");
  		if (restore) selObj.selectedIndex=0;
	
	} else if(  selObj.options[selObj.selectedIndex].value == 'Personal Banking'  ){
	
		return false;
	} else if (   selObj.options[selObj.selectedIndex].value == 'http://www.deluxe.com'  ) {

		  if (confirm('You are leaving the First National Bank of Santa Fe web site.\n\nThe website you have selected is an external one located on another server.\n\nFirst National Bank of Santa Fe has no responsibility for any external website. It neither endorses the information, content, presentation, or accuracy nor makes any warranty, express or implied, regarding any external site.\n\nThe privacy policy of any external website may have a privacy policy different than that of First National Bank of Santa Fe.\n\nThank you for visiting First National Bank of Santa Fe\'s Website')) {
			//eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
			window.open(selObj.options[selObj.selectedIndex].value);
			if (restore) selObj.selectedIndex=0;			 
		} else {
			return false;
		}
		
	} else {
	
		eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'"); 
		if (restore) selObj.selectedIndex=0;
	}
	
}

function validateform2()
{
	if(document.Login.elements["userNumber"].value == "")
	{
		alert("Please Enter User Id");
		document.Login.elements["userNumber"].focus();
		return false;
	}
	if(document.Login.elements["password"].value == "")
	{
		alert("Please Enter Password");
		document.Login.elements["password"].focus();
		return false;
	}
}


function confirmGoExternal() {
  if (confirm('You are leaving the First National Bank of Santa Fe web site.\n\nThe website you have selected is an external one located on another server.\n\nFirst National Bank of Santa Fe has no responsibility for any external website. It neither endorses the information, content, presentation, or accuracy nor makes any warranty, express or implied, regarding any external site.\n\nThe privacy policy of any external website may have a privacy policy different than that of First National Bank of Santa Fe.\n\nThank you for visiting First National Bank of Santa Fe\'s Website')) {
    return true;
  } else {
  	return false;
  }
}

