﻿var ie4          = false;
var ie5          = false;
var ns4          = false;
var ns6          = false;
var mac          = false;
var running      = false;
var timerId      = null;
var delay        = 750;
var currentMenu  = null;
var previousMenu = null;
var currentSub   = null;
var previousSub  = null;
var pageId       = null;
var loaded       = false;

if(document.layers){origWidth=innerWidth;origHeight=innerHeight;onresize=function(){if(innerWidth!=origWidth||innerHeight!=origHeight)location.reload()}}else{onresize=function(){window.location.reload();}}
function SetFocus(fieldname,formname){if (formname == ''){ formname = 'form'; }if (eval("document."+formname+".elements[fieldname].value == ''")){ eval("document."+formname+".elements[fieldname].focus();"); }}
function Popup(title,filename,w,h,scroll,resizable){if (title == ''){ title = 'popup'; }if (scroll == 'scroll'){ scroll = 'yes'; }else{ scroll = 'no'; }if (resizable == 'lock'){ resizable = 'no'; }else{ resizable = 'yes'; }winOptions = eval("'width="+w+",height="+h+",toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars="+scroll+",resizable="+resizable+",copyhistory=no'");window.open(filename,title,winOptions);return;}
function safemail(name,domain,display,linkclass) { linkclassshown = (typeof(linkclass) == "undefined") ? '' : ' class="'+linkclass+'"'; displayed = (typeof(display) == "undefined") ? name+"@"+domain : display;document.write('<a href=mailto:'+name+'@'+domain+linkclassshown+'>'+displayed+'</a>');}
function ShowYear(){var today = new Date(); var year = today.getYear(); year += (year < 1900) ? 1900 : 0; document.write(year);}
function StartTimer(event){running = true; timerId = setTimeout(event,delay);}
function StopTimer(){running = false; clearTimeout(timerId);}
function SetElementPosition(id,top,left){
  if (ns6) {
    document.getElementById(id).style.top = top;
    document.getElementById(id).style.left = left;
  } else {
    eval(id).style.top  = top;
    eval(id).style.left = left;
  }
}
function SetVisibility(id,flag) {
  if (ns6) {
    var str = (flag) ? 'visible' : 'hidden';
    document.getElementById(id).style.visibility = str;
  } else {
    var str = (flag) ? 'visible' : 'hidden';
    eval("document.all."+id).style.visibility = str;
  }
}
function getImageTop(imgID) {
  return getRealTop(imgID);
}
function getImageLeft(imgID) {
  return getRealLeft(imgID);
}
function getRealTop(imgElem) {
  yPos = eval(imgElem).offsetTop;
  tempEl = eval(imgElem).offsetParent;
  while (tempEl != null) {
    yPos += tempEl.offsetTop;
    tempEl = tempEl.offsetParent;
  }
  return yPos;
}
function getRealLeft(imgObj) {
	xPos = eval(imgObj).offsetLeft;
	tempObj = eval(imgObj).offsetParent;
  while (tempObj != null){
    xPos   += tempObj.offsetLeft;
    tempObj = tempObj.offsetParent;
  }
	return xPos;
}
function getImageWidth(id) {
  return document.getElementById(id).offsetWidth;
}
function getElementWidth(id){
	  return document.getElementById('menu'+id+'Div').offsetWidth;
  }
function getElementHeight(id){
  return document.getElementById('menu'+id+'Div').offsetHeight;
  }
function layerWrite(id,text){
  if (ns6){
    rng = document.createRange();
    el = document.getElementById(id);
    rng.setStartBefore(el);
    htmlFrag = rng.createContextualFragment(text);
    while (el.hasChildNodes()) el.removeChild(el.lastChild);
    el.appendChild(htmlFrag);
    }
  else if (ie5) { document.all[id].innerHTML = text; }
  }
//////////////////////////////////////////
//////////////////////////////////////////
function Init(id) {
  SetBrowser();
  LoadImages();
  if (ie5 || ns6) { LoadMenus(); }
  pageId = id;
  loaded = true;
}
function SetBrowser() {
  agent = navigator.userAgent.toLowerCase();
  mac   = (agent.indexOf("mac")!=-1);
  ie4   = (document.all && !document.getElementById) ? true : false;
  ie5   = (document.all && document.getElementById)  ? true : false;
  ns4   = (document.layers)                          ? true : false;
  ns6   = (document.getElementById && !document.all) ? true : false;
}
function LoadImages() {
  var num_images = 15;
  NavOff = new Array(num_images);
  for (var i=0; i<num_images; i++){ NavOff[i] = new Image(); }
  NavOff[0].src = "https://www.velocitycu.com/images/nav_checking_a.gif";
  NavOff[1].src = "https://www.velocitycu.com/images/nav_loans_a.gif";
  NavOff[2].src = "https://www.velocitycu.com/images/nav_business_a.gif";
  NavOff[3].src = "https://www.velocitycu.com/images/nav_investments_a.gif";
  NavOff[4].src = "https://www.velocitycu.com/images/nav_additional_a.gif";
  NavOff[5].src = "https://www.velocitycu.com/images/nav_calculators_a.gif";
  NavOff[6].src = "https://www.velocitycu.com/images/nav_locations_a.gif";
  NavOff[7].src = "https://www.velocitycu.com/images/aux_membership_a.gif";
  NavOff[8].src = "https://www.velocitycu.com/images/aux_education_a.gif";
  NavOff[9].src = "https://www.velocitycu.com/images/aux_about_a.gif";
  NavOff[10].src = "https://www.velocitycu.com/images/aux_employment_a.gif";
  NavOff[11].src = "https://www.velocitycu.com/images/aux_espanol_a.gif";
  NavOff[12].src = "https://www.velocitycu.com/images/aux_contact_a.gif";
  NavOff[13].src = "https://www.velocitycu.com/images/aux_newsletter_a.gif";
  NavOff[14].src = "https://www.velocitycu.com/images/aux_faq_a.gif";
  
  NavOn = new Array(num_images);
  for (var i=0; i<num_images; i++){ NavOn[i] = new Image(); }
  NavOn[0].src = "https://www.velocitycu.com/images/nav_checking_b.gif";
  NavOn[1].src = "https://www.velocitycu.com/images/nav_loans_b.gif";
  NavOn[2].src = "https://www.velocitycu.com/images/nav_business_b.gif";
  NavOn[3].src = "https://www.velocitycu.com/images/nav_investments_b.gif";
  NavOn[4].src = "https://www.velocitycu.com/images/nav_additional_b.gif";
  NavOn[5].src = "https://www.velocitycu.com/images/nav_calculators_b.gif";
  NavOn[6].src = "https://www.velocitycu.com/images/nav_locations_b.gif";
  NavOn[7].src = "https://www.velocitycu.com/images/aux_membership_b.gif";
  NavOn[8].src = "https://www.velocitycu.com/images/aux_education_b.gif";
  NavOn[9].src = "https://www.velocitycu.com/images/aux_about_b.gif";
  NavOn[10].src = "https://www.velocitycu.com/images/aux_employment_b.gif";
  NavOn[11].src = "https://www.velocitycu.com/images/aux_espanol_b.gif";
  NavOn[12].src = "https://www.velocitycu.com/images/aux_contact_b.gif";
  NavOn[13].src = "https://www.velocitycu.com/images/aux_newsletter_b.gif";
  NavOn[14].src = "https://www.velocitycu.com/images/aux_faq_b.gif";
}
function LoadMenus() {
  //menus
  for (var i=0; i<15; i++) {
    imgId  = 'nav'+i;
    menuId = 'menu'+i+'Div';
    
    //get anchor image
    if (ns6){ anchorObj = eval('document.getElementById("'+imgId+'")'); }
    else    { anchorObj = eval('document.images["'+imgId+'"]'); }
    
    //set position
    menuWidth   = getElementWidth(i);
    menuHeight  = getElementHeight(i);
    anchorTop  = getImageTop(anchorObj);
    anchorWidth = getImageWidth(imgId);
    anchorLeft = getImageLeft(anchorObj);
    menuTop    = (i < 7) ? anchorTop + 37 : anchorTop + 14;
    menuLeft   = (i == 6 || i == 11 || i == 12) ? anchorLeft + anchorWidth - menuWidth : anchorLeft;
    SetElementPosition(menuId,menuTop,menuLeft);

    //shadow
    if (menuWidth > 1 && menuHeight > 1){
      var tempstring,writestring;
      tempstring = '<img src="https://www.velocitycu.com/images/spacer_000000.gif" width="'+menuWidth+'" height="'+menuHeight+'" alt="" border="0">';
      writestring =  (!(mac && (ie4 || ie5))) ? '<table cellpadding="0" cellspacing="0" border="0"><tr><td class="transparent">'+tempstring+'</td></tr></table>' : tempstring;
      layerWrite('shadow'+i+'Div',writestring);
      shadowTop = menuTop + 4;
      shadowLeft = menuLeft + 4; 
      SetElementPosition('shadow'+i+'Div',shadowTop,shadowLeft);
    }
  }
}
function Show(id) {
  if (running) { StopTimer(); }
  currentMenu = id;
  if (currentMenu != previousMenu && previousMenu != null) { Hide(previousMenu); }
  if (ie4) {
    eval('document.images["nav'+id+'"].src = NavOn[id].src');
  } else if (ns4) {
    eval('document.images["nav'+id+'"].src = NavOn[id].src');
  } else {
    eval('document.getElementById("menu'+id+'Div").style.visibility = "visible"');
    eval('document.getElementById("shadow' + id + 'Div").style.visibility = "visible"');
    eval('document.getElementById("nav'+id+'").src = NavOn[id].src');
  }
  previousMenu = currentMenu;
}
function Hide(id) {
  if (id == null) { return; }
  if (ie4) {
    if (id != pageId){ eval('document.images["nav'+id+'"].src = NavOff[id].src'); }
  } else if (ns4) {
    if (id != pageId){ eval('document.images["nav'+id+'"].src = NavOff[id].src'); }
  } else {
    eval('document.getElementById("menu'+id+'Div").style.visibility = "hidden"');
    eval('document.getElementById("shadow'+id+'Div").style.visibility = "hidden"');
    if (id != pageId){ eval('document.getElementById("nav'+id+'").src = NavOff[id].src'); }
  }
}
function randomImage(limit) {
  this_image = 0;
  //there is no #5 image...
  while (this_image < 1 || this_image > limit || this_image == 5) { this_image = Math.ceil(Math.random()*limit); }
  //alert(this_image);
  document.write('<img src="https://www.velocitycu.com/images/img_'+this_image+'.jpg" width="190" alt="" border="0">');
}
function randomImageHome(limit) {
  this_image = 0;
  //there is no #1 or #7 image...
  while (this_image < 2 || this_image > limit || this_image == 7) { this_image = Math.ceil(Math.random()*limit); }
  //alert(this_image);
  document.write('<img src="https://www.velocitycu.com/images/img_main_home'+this_image+'.jpg" width="780" height="128" alt="" border="0">');
}

//phone format code
var areacodeLength  = 3;
var firstThree      = 3;
var previousLength = null;
var thisInput       = null;
var originalLength  = null;
var thisAreacode    = null;
var thisFirstThree  = null;
var thisLastFour    = null;
function autoFormat(input,type) {
  if (type == 'phone') {
    var addFirstParen   = false;
    var addSecondParen  = false;
    var addDash         = false;
    thisInput       = input.value.replace(/[. ()-\/]/gi,'');
    //do nothing for opening paren
    if (input.value.length == 1 && input.value == '(') { return true; }
    //dont do anything on backspace
    else if (input.value.length >= previousLength) {
      thisAreacode    = thisInput.substr(0,3);
      thisFirstThree  = thisInput.substr(3,3);
      thisLastFour    = thisInput.substr(6,4);
      
      //add '('
      if (thisInput.length > 0) { addFirstParen = true; }
      //add ') '
      if (thisAreacode.length == areacodeLength) { addSecondParen = true; }
      //add '-'
      if (thisFirstThree.length == firstThree) { addDash = true; }
      
      //add everything, assign to field
      if (addFirstParen) { thisAreacode = '(' + thisAreacode; }
      if (addSecondParen) { thisAreacode += ') '; }
      if (addDash) { thisFirstThree += '-'; }
      input.value = thisAreacode + thisFirstThree + thisLastFour;
    }
    previousLength = input.value.length
  }
}

function showCalc(calc){
		var pWidth = ( ((parseInt(screen.width) / 2)) - 275 )
		var pHeight = (((parseInt(screen.height) / 2)) -240)
        window.open(calc,'hello',"width=550,height=480,left=" + pWidth + ",top=" + pHeight + ",resizable=1,scrollbars=1");
}

function open_apps(nameofapp)
{
var pWidth = ( ((parseInt(screen.width) / 2)) - 350)
var pHeight = (((parseInt(screen.height) / 2)) - 300)
//aWindow = window.open('https://www.velocitycu.com/Forms/OnlineForm.cgi?form=' + nameofapp,'application',"toolbar=0,location=0,directories=0,status=0,menubar=0,width=700,height=600,top=" + pHeight + ",left=" + pWidth + ",scrollbars=1,resizable=1,status=1");

location.href = "https://www.velocitycu.com/Forms/OnlineForm.cgi?form=" + nameofapp + "&onWeb=TRUE"; 

}



function checkDomain()
{
//This code works on ANY page-- thus the Portable
//
//    
      var loc = document.location.toString();
      var index = loc.indexOf(":");
      var url = loc.substring(index,loc.length);
      if (index == "4") 
	  { 
         secureUrl = "https" + url;
         location.replace(secureUrl); // get rid of current page in history
         location.href = secureUrl;
      }

if(self.location.href.indexOf('velocitycu')>0){
//	self.location.replace("https://www.velocitycu.com");
}
else {
self.location.replace("https://www.velocitycu.com");
}
}









function makeHeader()
{
var header=""
header+='<a name="top"></a>';
header+='<table height="100%" cellpadding="0" cellspacing="0" border="0" align="center">';
header+='<tr valign="top">';
header+='  <td class="graybg">';
header+='  <!-- ****** -->';
header+='  <!-- header -->';
header+='  <table width="780" cellpadding="0" cellspacing="0" border="0" align="center">';
header+='  <tr valign="center">';
header+='    <td class="whitebg"><a href="https://www.velocitycu.com/index.html"><img src="https://www.velocitycu.com/images/2logo.gif" width="147" height="117" alt="Back to Home" border="0"></a>';
header+='   <td class="whitebg">';
header+='    <div style="margin-top:28px;">';
header+='      <table width="584" cellpadding="0" cellspacing="0" border="0" align="right" >';
header+='<tr>';
header+='        <td><table cellspacing="0" cellpadding="0" align="center" valign="top"><tr><td><center><b>New to Velocity?</b></center></td><td><img src="https://www.velocitycu.com/images/spacer.gif" width="15" height="10"></td><td><center><b>Already a Member?</b></center></td></tr><tr><td><a href="https://www.velocitycu.com/switch_kit.html"><img src="https://www.velocitycu.com/images/andera_login_new.gif" border="0"></a></td><td><img src="https://www.velocitycu.com/images/spacer.gif" width="15" height="10"></td><td><a href="javascript:Popup(\'forgot\',\'https://secure.andera.com/index.cfm?fiid=77DE92B72FA84A5ABD971DD6B7187157\',800,700,\'scroll\');"><img src="https://www.velocitycu.com/images/andera_login_mbr.gif" border="0"></a></td></tr><tr><td colspan="3"><img src="https://www.velocitycu.com/images/spacer.gif" width="300" height="20" border="0"></td></tr><tr><td colspan="3"><form name=seek method=get action="https://www.velocitycu.com/DIUltraseek/nph-di_ultraseek.cgi"><img src="https://www.velocitycu.com/images/search.gif" width="120" height="30" alt="" border="0" align="left"><input type=hidden name=reaction st'+'yle="font-family: monospace"  value="http://search.diginsite.com/query.html"><p><input type=text name=qt size=10 value="" maxlength=2047> <input type="image" name="submit" src="https://www.velocitycu.com/images/search_go.gif" border="0" align="absbottom"><input type=hidden name=col value="search1"><input type=hidden name=qc value="search1"><input type=hidden name=qp value="+site:velocitycu.com"><input type=hidden name=qs value=""><input type=hidden name=ws value="0"><input type=hidden name=qm value="0"><input type=hidden name=rq value="0"><input type=hidden name=st value="1"><input type=hidden name=nh value="10"><input type=hidden name=lk value="1"><input type=hidden name=rf value="0"><input type=hidden name=oq value=""><img src="images/clearpix.gif" width="16" height="1" border="0"></td></tr></form></table></td><td align="center"><a href="https://www.velocitycu.com/online_banking_signin.html"><img src="https://www.velocitycu.com/images/login_to_banking2.gif" width="150" height="75" alt="" border="0"></a>';
header+='        <br><a href="javascript:Popup(\'forgot\',\'https://www.velocitycu.com/popup_signup.html\',520,400,\'scroll\');"><img src="https://www.velocitycu.com/images/login_signup.gif" width="38" height="14" alt="Sign Up!" border="0"></a><!-- <a href="https://www.velocitycu.com/online_banking.html"><img src="https://www.velocitycu.com/images/login_signup.gif" width="38" height="14" alt="Sign Up!" border="0"></a> --><a href="javascript:Popup(\'forgot\',\'https://www.velocitycu.com/popup_forgot.html\',600,400,\'scroll\');"><img src="https://www.velocitycu.com/images/login_forgot.gif" width="85" height="14" alt="Forgot Password?" border="0"></a><a href="javascript:Popup(\'forgot\',\'https://www.velocitycu.com/popup_security.html\',520,400,\'scroll\');"><img src="https://www.velocitycu.com/images/login_security.gif" width="71" height="14" alt="Security Info" border="0"></a></td>';
header+='      </tr>';
header+='      <tr><td colspan="3" align="right"><div st'+'yle="margin-top:15px; margin-bottom:15px;"><a href="https://www.velocitycu.com/faq.html" onmouseover="if(loaded){Show(14);}" onmouseout="if(loaded){StartTimer(\'Hide(14)\');}"><img src="https://www.velocitycu.com/images/aux_faq_a.gif" width="26" height="11" alt="FAQ" border="0" id="nav14" name="nav14"></a><img src="https://www.velocitycu.com/images/spacer.gif" width="15" height="1" alt="" border="0"><a href="https://www.velocitycu.com/newsletter.html" onmouseover="if(loaded){Show(13);}" onmouseout="if(loaded){StartTimer(\'Hide(13)\');}"><img src="https://www.velocitycu.com/images/aux_newsletter_a.gif" width="57" height="11" alt="Newsletter" border="0" id="nav13" name="nav13"></a><img src="https://www.velocitycu.com/images/spacer.gif" width="15" height="1" alt="" border="0"><a href="https://www.velocitycu.com/membership_new.html" onmouseover="if(loaded){Show(7);}" onmouseout="if(loaded){StartTimer(\'Hide(7)\');}"><img src="https://www.velocitycu.com/images/aux_membership_a.gif" width="57" height="11" alt="Membership" border="0" id="nav7" name="nav7"></a><img src="https://www.velocitycu.com/images/spacer.gif" width="15" height="1" alt="" border="0"><a href="https://www.velocitycu.com/education.html" onmouseover="if(loaded){Show(8);}" onmouseout="if(loaded){StartTimer(\'Hide(8)\');}"><img src="https://www.velocitycu.com/images/aux_education_a.gif" width="80" height="11" alt="Education Center" border="0" id="nav8" name="nav8"></a><img src="https://www.velocitycu.com/images/spacer.gif" width="15" height="1" alt="" border="0"><a href="https://www.velocitycu.com/corporate.html" onmouseover="if(loaded){Show(9);}" onmouseout="if(loaded){StartTimer(\'Hide(9)\');}"><img src="https://www.velocitycu.com/images/aux_about_a.gif" width="57" height="11" alt="About Us" border="0" id="nav9" name="nav9"></a><img src="https://www.velocitycu.com/images/spacer.gif" width="15" height="1" alt="" border="0"><a href="https://www.velocitycu.com/employment.html" onmouseover="if(loaded){Show(10);}" onmouseout="if(loaded){StartTimer(\'Hide(10)\');}"><img src="https://www.velocitycu.com/images/aux_employment_a.gif" width="57" height="11" alt="Employment" border="0" id="nav10" name="nav10"></a><img src="https://www.velocitycu.com/images/spacer.gif" width="15" height="1" alt="" border="0"><a href="https://www.velocitycu.com/espanol.html" onmouseover="if(loaded){Show(11);}" onmouseout="if(loaded){StartTimer(\'Hide(11)\');}"><img src="https://www.velocitycu.com/images/aux_espanol_a.gif" width="50" height="11" alt="En Espanol" border="0" id="nav11" name="nav11"></a><img src="https://www.velocitycu.com/images/spacer.gif" width="15" height="1" alt="" border="0"><a href="https://www.velocitycu.com/contact.html" onmouseover="if(loaded){Show(12);}" onmouseout="if(loaded){StartTimer(\'Hide(12)\');}"><img src="https://www.velocitycu.com/images/aux_contact_a.gif" width="51" height="11" alt="Contact Us" border="0" id="nav12" name="nav12"></a></div></td></tr>';
header+='      </table>';
header+='    </div>';
header+='    </td>';
header+='    <td class="whitebg"><div st'+'yle="margin-left:14px;"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="1" alt="" border="0"></div></td>';
header+='  </tr>'; 
header+='  </table>';
document.open('text/html');
document.write(header);
}



function makeMainNav()
{
var mainnav=""  
mainnav+='<!----------------------------------MAIN NAV GOES HERE---------------------------------> ';
mainnav+='<!----------------------------------MAIN NAV GOES HERE---------------------------------> ';
mainnav+='<!----------------------------------MAIN NAV GOES HERE--------------------------------->';  
mainnav+='  <table width="780" cellpadding="0" cellspacing="0" border="0">';
mainnav+='  <tr><td class="darkbluebg" align="center"><img src="https://www.velocitycu.com/images/nav_left.gif" width="18" height="35" alt="" border="0"><a href="https://www.velocitycu.com/accounts.html" onmouseover="if(loaded){Show(0);}" onmouseout="if(loaded){StartTimer(\'Hide(0)\');}"><img src="https://www.velocitycu.com/images/nav_checking_b.gif" width="110" height="35" alt="Checking & Savings" border="0" id="nav0" name="nav0"></a><a href="https://www.velocitycu.com/loans.html" onmouseover="if(loaded){Show(1);}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}"><img src="https://www.velocitycu.com/images/nav_loans_a.gif" width="54" height="35" alt="Loans" border="0" id="nav1" name="nav1"></a><a href="https://www.velocitycu.com/accounts_business.html" onmouseover="if(loaded){Show(2);}" onmouseout="if(loaded){StartTimer(\'Hide(2)\');}"><img src="https://www.velocitycu.com/images/nav_business_a.gif" width="87" height="35" alt="Business Services" border="0" id="nav2" name="nav2"></a><a href="https://www.velocitycu.com/investments.html" onmouseover="if(loaded){Show(3);}" onmouseout="if(loaded){StartTimer(\'Hide(3)\');}"><img src="https://www.velocitycu.com/images/nav_investments_a.gif" width="124" height="35" alt="Investment Services" border="0" id="nav3" name="nav3"></a><a href="https://www.velocitycu.com/additional_services.html" onmouseover="if(loaded){Show(4);}" onmouseout="if(loaded){StartTimer(\'Hide(4)\');}"><img src="https://www.velocitycu.com/images/nav_additional_a.gif" width="120" height="35" alt="Additional Services" border="0" id="nav4" name="nav4"></a><a href="https://www.velocitycu.com/calculators.html" onmouseover="if(loaded){Show(5);}" onmouseout="if(loaded){StartTimer(\'Hide(5)\');}"><img src="https://www.velocitycu.com/images/nav_calculators_a.gif" width="122" height="35" alt="Calculators & Rates" border="0" id="nav5" name="nav5"></a><a href="https://www.velocitycu.com/locations.html" onmouseover="if(loaded){Show(6);}" onmouseout="if(loaded){StartTimer(\'Hide(6)\');}"><img src="https://www.velocitycu.com/images/nav_locations_a.gif" width="131" height="35" alt="ATM & Branch Locations" border="0" id="nav6" name="nav6"></a><img src="https://www.velocitycu.com/images/nav_right.gif" width="14" height="35" alt="" border="0"></td></tr>';
mainnav+=' </table> ';

document.open('text/html');
document.write(mainnav);
}









function makeFooter()
{
var footer=""
if(window.homepage)
{
footer+='';
}
else {
footer+='<table width="780" cellpadding="0" cellspacing="0" border="0">';
footer+='  <tr>';
footer+='    <td class="whitebg">';
footer+='    <div st'+'yle="margin-top:14px;margin-left:14px;">';
footer+='      <table width="766" cellpadding="0" cellspacing="0" border="0">';
footer+='      <tr valign="top">';
if(!window.formpage){
	footer+='      <scr'+'ipt>makeSpecialOffers();</scr'+'ipt>';
}
footer+='        <td width="559">';
}
footer+='        <div st'+'yle="margin-top:15px;" align="right">';
footer+='          <table cellpadding="0" cellspacing="0" border="0">';
footer+='          <tr>';
footer+='            <td class="graytext">&copy;<scr' + 'ipt type="text/javascript"> ShowYear(); </scr' + 'ipt><noscr' + 'ipt>2002</noscr' + 'ipt> Velocity Credit Union. <scr' + 'ipt type="text/javascript"> safemail(\'MSC\',\'velocitycu.com\',\'Site Feedback\'); </scr' + 'ipt>&nbsp;</td>';
footer+='            <td><img src="https://www.velocitycu.com/images/footer_dots.gif" width="3" height="11" alt="" border="0"></td>';
footer+='            <td class="graytext">&nbsp;<a href="https://www.velocitycu.com/privacy.html">Privacy Policy</a> & <a href="https://www.velocitycu.com/disclosures.html">Disclosure</a>&nbsp;</td>';
footer+='            <td><img src="https://www.velocitycu.com/images/footer_dots.gif" width="3" height="11" alt="" border="0"></td>';
footer+='            <td class="graytext">&nbsp;<a href="https://www.velocitycu.com/sitemap.html">Site Map</a></td>';
footer+='          </tr>';
footer+='          </table>';
footer+='        </div>';
footer+='        </td>';
footer+='        <td width="15"><div st'+'yle="margin-left:14px;"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="1" alt="" border="0"></div></td>';
footer+='      </tr>';
footer+='      </table>';
footer+='    </div>';
footer+='    </td>';
footer+='  </tr>';
footer+='  <tr><td class="whitebg"><div st'+'yle="margin-top:13px;"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="1" alt="" border="0"></div></td></tr>';
footer+='  <tr>';
footer+='    <td><div><img src="https://www.velocitycu.com/images/footer_yellow_margin.gif" width="780" height="8" alt="" border="0"></div>';
footer+='    <div st'+'yle="margin-top:15px;" align="right"><img src="https://www.velocitycu.com/images/footer_lender.gif" width="77" height="80" alt="" border="0"><img width="137" height="80" border="0" alt="" src="https://www.velocitycu.com/images/footer_ncua.gif"/><img width="175" height="80" border="0" alt="" src="https://www.velocitycu.com/images/footer_ncua_text.gif"/><img src="https://www.velocitycu.com/images/spacer.gif" width="15" height="1" alt="" border="0"></div></td>';
footer+='  </tr>';
footer+='  </table>';
footer+='  </td>';
footer+='</tr>';
footer+='</table>';
footer+='<!-- ***** -->';
footer+='<!-- menus -->';
footer+='<div id="menu0Div">';
footer+='  <table cellpadding="1" cellspacing="0" border="0">';
footer+='  <tr>';
footer+='    <td class="greenbg">';
footer+='    <table width="150" cellpadding="5" cellspacing="0" border="0">';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/accounts_checking.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(0)\');}">Checking Accounts</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/accounts_saving.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(0)\');}">Savings/Money Market/Share Certificate Accounts</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/switch_kit.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(0)\');}">Switch Kit</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/additional_services.html#routing_number" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(0)\');}">Direct Deposit/Routing Number</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/thirdparty_HCchecks.html" target="_blank" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(0)\');}">Reorder Checks</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/frequently_used_forms.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(0)\');}">Frequently Used Forms</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='    </table>';
footer+='    </td>';
footer+='  </tr>';
footer+='  </table>';
footer+='</div>';
footer+='<div id="shadow0Div"></div>';
footer+='<div id="menu1Div">';
footer+='  <table cellpadding="1" cellspacing="0" border="0">';
footer+='  <tr>';
footer+='    <td class="greenbg">';
footer+='    <table width="150" cellpadding="5" cellspacing="0" border="0">';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/loans.html#energy" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Home Energy Loan Program</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/loans.html#solar" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Home Energy Solar Loan Program</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/loans_auto.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Vehicle Loans</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/loans_dealer.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Auto Dealers</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/loans_home.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Home Equity and <br> Home Improvement</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/loans_mortgage.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Mortgage Loans</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/creditcards.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Credit Cards</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/loans_quickloans.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Quick Loans - Personal Line<br>of Credit</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/loans_quickloans.html#personalloan" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Lifestyle/Personal Loans</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/loans_consumer.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Consumer Loans</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/debt_management.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Credit Counseling</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/loans_rewards_new.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(1)\');}">Member Rewards</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='    </table>';
footer+='    </td>';
footer+='  </tr>';
footer+='  </table>';
footer+='</div>';
footer+='<div id="shadow1Div"></div>';
footer+='<div id="menu2Div">';
footer+='  <table cellpadding="1" cellspacing="0" border="0">';
footer+='  <tr>';
footer+='    <td class="greenbg">';
footer+='    <table width="150" cellpadding="5" cellspacing="0" border="0">';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/accounts_business_checking.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(2)\');}">Business Checking</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/accounts_business.html#businessloans" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(2)\');}">Business Loans</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/accounts_business_ach.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(2)\');}">ACH Services</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='    </table>';
footer+='    </td>';
footer+='  </tr>';
footer+='  </table>';
footer+='</div>';
footer+='<div id="shadow2Div"></div>';
footer+='<div id="menu3Div">';
footer+='  <table cellpadding="1" cellspacing="0" border="0">';
footer+='  <tr>';
footer+='    <td class="greenbg">';
footer+='    <table width="150" cellpadding="5" cellspacing="0" border="0">';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/investment_products.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(3)\');}">Depository Investment Products</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/investment_center.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(3)\');}">Financial Planning<br>Center</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/investment_center_seminars.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(3)\');}">Seminars</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='    </table>';
footer+='    </td>';
footer+='  </tr>';
footer+='  </table>';
footer+='</div>';
footer+='<div id="shadow3Div">';
footer+='</div>';
footer+='<div id="menu4Div">';
footer+='  <table cellpadding="1" cellspacing="0" border="0">';
footer+='  <tr>';
footer+='    <td class="greenbg">';
footer+='    <table width="150" cellpadding="5" cellspacing="0" border="0">';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/additional_services.html#debitcard" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(4)\');}">MasterCard Debit Card</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/online_banking.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(4)\');}">Online Banking</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/additional_discounts.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(4)\');}">Retailer Discounts for Members</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/scholarship.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(4)\');}">Scholarships</a></td>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/additional_senior.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(4)\');}">Elite Rewards</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/additional_youth.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(4)\');}">Youth Club</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/debt_management.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(4)\');}">Credit Counseling and Debt Management</a></td>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/vehicle_sale.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(4)\');}">Vehicles for Sale</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='    </table>';
footer+='    </td>';
footer+='  </tr>';
footer+='  </table>';
footer+='</div>';
footer+='<div id="shadow4Div"></div>';
footer+='<div id="menu5Div">';
footer+='  <table cellpadding="1" cellspacing="0" border="0">';
footer+='  <tr>';
footer+='    <td class="greenbg">';
footer+='    <table width="150" cellpadding="5" cellspacing="0" border="0">';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/rates.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(5)\');}">Rates</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/calculator_loan.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(5)\');}">Loan Calculator</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/calculator_comparison.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(5)\');}">Loan Comparison Calculator</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/calculator_mortgage.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(5)\');}">Mortgage Calculator</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/calculator_retirement.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(5)\');}">Retirement Calculator</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='    </table>';
footer+='    </td>';
footer+='  </tr>';
footer+='  </table>';
footer+='</div>';
footer+='<div id="shadow5Div"></div>';
footer+='<div id="menu6Div"></div>';
footer+='<div id="shadow6Div"></div>';
footer+='<div id="menu7Div">';
footer+='  <table cellpadding="1" cellspacing="0" border="0">';
footer+='  <tr>';
footer+='    <td class="greenbg">';
footer+='    <table width="150" cellpadding="5" cellspacing="0" border="0">';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/membership_eligibility.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(7)\');}">Eligibility</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/membership_companies.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(7)\');}">Member Companies</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="javascript:Popup(\'forgot\',\'https://secure.andera.com/index.cfm?fiid=77DE92B72FA84A5ABD971DD6B7187157\',800,700,\'scroll\');" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(7)\');}">Join Now</a><br>';
footer+='      <img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="3" alt="" border="0"></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/seg/index.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(7)\');}">SEG Central</a></td>';
footer+='    </tr>';
footer+='    </table>';
footer+='    </td>';
footer+='  </tr>';
footer+='  </table>';
footer+='</div>';
footer+='<div id="shadow7Div"></div>';
footer+='<div id="menu8Div">';
footer+='  <table cellpadding="1" cellspacing="0" border="0">';
footer+='  <tr>';
footer+='    <td class="greenbg">';
footer+='    <table width="150" cellpadding="5" cellspacing="0" border="0">';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/education_scams.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(8)\');}">Scams & ID Theft</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/debt_management.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(8)\');}">Credit Counseling and Debt Management</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/education.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(8)\');}">Seminars</a></td>';
footer+='    </tr>';
footer+='    </table>';
footer+='    </td>';
footer+='  </tr>';
footer+='  </table>';
footer+='  </div>';
footer+='<div id="shadow8Div"></div>';
footer+='<div id="menu9Div">';
footer+='  <table cellpadding="1" cellspacing="0" border="0">';
footer+='  <tr>';
footer+='    <td class="greenbg">';
footer+='    <table width="150" cellpadding="5" cellspacing="0" border="0">';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/corporate.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(9)\');}">History</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/corporate_service.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(9)\');}">Community</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/corporate_board.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(9)\');}">Board of Directors</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/corporate_service.html#sponsor" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(9)\');}">Sponsorship</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/news.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(9)\');}">News/Press Releases</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/tv_spots.html" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(9)\');}">Commercials</a></td>';
footer+='    </tr>';
footer+='  	<tr valign="top">';
footer+='      <td class="whitebg"><img src="https://www.velocitycu.com/images/spacer.gif" width="1" height="2" alt="" border="0"><br>';
footer+='      <img src="https://www.velocitycu.com/images/bullet_green.gif" width="4" height="11" alt="" border="0"></td>';
footer+='      <td class="whitebg"><a href="https://www.velocitycu.com/images/08_annual_report.pdf" onmouseover="if(loaded){StopTimer();}" onmouseout="if(loaded){StartTimer(\'Hide(9)\');}">2008 Annual Report</a></td>';
footer+='    </tr>';
footer+='    </table>';
footer+='    </td>';
footer+='  </tr>';
footer+='  </table>';
footer+='  </div>';
footer+='<div id="shadow9Div"></div>';
footer+='<div id="menu10Div"></div>';
footer+='<div id="shadow10Div"></div>';
footer+='<div id="menu11Div"></div>';
footer+='<div id="shadow11Div"></div>';
footer+='<div id="menu12Div"></div>';
footer+='<div id="shadow12Div"></div>';
footer+='<div id="menu13Div"></div>';
footer+='<div id="shadow13Div"></div>';
footer+='<div id="menu14Div"></div>';
footer+='<div id="shadow14Div"></div>';
footer+='</body></html>';

document.open('text/html');
document.write(footer);
}


