﻿function roll_over(img_name, img_src)
   {
  
 var img = document.getElementById(img_name);
 img.src = img_src;
   }

function preloadImages()
{
     // counter
     var i = 0;
     // create object
     imageObj = new Image();
     // set image list
     images = new Array();
     images[0]="_img/home/nav_1_on.gif"
     images[1]="_img/home/nav_2_on.gif"
     images[2]="_img/home/nav_3_on.gif"
     images[3]="_img/home/nav_4_on.gif"
     images[4]="_img/home/nav_5_on.gif"
     images[5]="_img/home/nav_6_on.gif"
     images[6]="_img/home/nav_7_on.gif"
     images[7]="_img/home/nav_8_on.gif"
     // start preloading
     for(i = 0; i <= images.length; i++) 
     {
          imageObj.src=images[i];
          document.write("<img src='" + imageObj.src + "' style='display: none;'/>");
     }
}
preloadImages();


function setAction()
  {
    if(document.Remote.loginTo[1].checked)
    {
       document.Remote.nmUID.value = document.Remote.AccessID.value;
       document.Remote.action = 'https://web4.secureinternetbank.com/ebc_ebc1961/ebc1961.asp?wci=process&wce=remotelogon&rid=3000&rtn=125008220&rt=125008220';
 	}
   }
   
function doLoginRefresh()
{
	if (document.Remote.AccessID.value != "")
		{
		setAction();
		setTimeout('document.Remote.reset()', 20000);
		document.Remote.AccessID.value=document.Remote.AccessID.value;
		document.Remote.Password.value=document.Remote.Password.value;
		return true;
		}
	else
		{
		alert("\n Please Enter a valid Access ID and Password.  Thank you!\n\n\t"); 
		return false;
		}	
}


//function WeblinkingDisclosureWarnning()
//{
//var weblinkDisclosure =	"return confirm('You have requested a document that is external"+
//				" to Viking Bank’s World Wide Website. Viking Bank cannot attest to the accuracy of"+
//				" information provided by linked sites, and Viking Bank does not guarantee or endorse"+
//				" the products, information or recommendations of any linked site. Linking to a website" +
//				" does not constitute an endorsement by Viking Bank, or any of its employees, "+
//				" of the sponsors of the site or the products presented on the site.What would you like to do?"+
//				" (OK) Go to the requested page "+" (Cancel) Return to the previous page')";
//				
//	return confirm(weblinkDisclosure);
//}



