function Include(){
	this.domain = "doifcu";
	this.friendly = " Department of Interior FCU";	
	this.headergraphic = "";
	this.contentgraphic = "";
	
	this.setHeaderGraphic = setHeaderGraphic;
	this.setContentGraphic = setContentGraphic;
    this.setContentGraphicGIF = setContentGraphicGIF;

	this.makeHeader = makeHeader;
	this.makeTopNav = makeTopNav;	
	this.makeDateStamp = makeDateStamp;	
	this.makeLoginArea = makeLoginArea;	
	this.makeMainNav = makeMainNav;
	this.makeQuickLinks = makeQuickLinks;		
	this.makeHomeQuickLinks = makeHomeQuickLinks;		
	this.makeFooter = makeFooter;
	this.makeFooterPreview = makeFooterPreview;
}

function makeHeader(){
var content = new Array();
var index = 0;

content[index++] = '<table width="760" border="0" cellspacing="0" cellpadding="0">';
content[index++] = '  <tr>';
content[index++] = '    <td align="right" bgcolor="#D75D0C" background="' + imgdir + 'subnav-bg.gif" height="32"> ';
content[index++] = '      <table width="398" border="0" cellspacing="0" cellpadding="0" background="' + imgdir + 'hed-bg.gif">';
content[index++] = '        <tr> ';
content[index++] = '          <td width="243" background="' + imgdir + 'clearpix.gif">';
content[index++] = '<!-- START SUBNAV -->';
content[index++] = inc.makeTopNav();
content[index++] = '          </td>';
content[index++] = '<!-- START DATESTAMP CELL -->';
content[index++] = inc.makeDateStamp();
content[index++] = '        </tr>';
content[index++] = '      </table>';
content[index++] = '    </td>';
content[index++] = '  </tr>';
content[index++] = '  <tr>';
content[index++] = '    <td bgcolor="#BEB9A6" background="' + imgdir + 'hed-logo-bg.gif">';
content[index++] = '      <table width="760" border="0" cellspacing="0" cellpadding="0">';
content[index++] = '        <tr>';
content[index++] = '          <td width="301"><a href="' + homedir + 'home.html"><img src="' + imgdir + 'hed-logosymbol.gif" width="94" height="86" alt="Interior Federal Credit Union" border="0"><img src="' + imgdir + 'hed-logotext.gif" width="207" height="86" alt="Interior Federal Credit Union - Sharing the Rewards of Membership" border="0"></a></td>';
content[index++] = '          <td align="right"> ';
content[index++] = inc.makeLoginArea();
content[index++] = '          </td>';
content[index++] = '        </tr>';
content[index++] = '      </table>';
content[index++] = '    </td>';
content[index++] = '  </tr>';
content[index++] = '  <tr>';
content[index++] = '    <td bgcolor="#000066"><img src="' + imgdir + 'clearpix.gif" width="1" height="4"></td>';
content[index++] = '  </tr>';
content[index++] = '  <tr>';
content[index++] = '    <td>';
content[index++] = '      <table width="760" border="0" cellspacing="0" cellpadding="0">';
content[index++] = '        <tr valign="top"> ';
content[index++] = '          <td width="157" bgcolor="#F3F1E4" background="' + imgdir + 'nav-bg.gif">';
content[index++] = '<!-- START NAV TABLE -->';
content[index++] = '            <table width="144" border="0" cellspacing="0" cellpadding="1" align="center">';
content[index++] = '              <tr> ';
content[index++] = '                <td><img src="' + imgdir + 'clearpix.gif" width="148" height="8"></td>';
content[index++] = '              </tr>';
content[index++] = inc.makeMainNav();
content[index++] = '            </table>';
content[index++] = '            <br>';
content[index++] = '            <br>';
content[index++] = '            <table width="156" border="0" cellspacing="0" cellpadding="0">';
content[index++] = '              <tr> ';
content[index++] = '                <!-- START QUICKLINKS CELL -->';
content[index++] = inc.makeQuickLinks();
content[index++] = '                <!-- START QUICKLINKS CELL -->';
content[index++] = '              </tr>';
content[index++] = '            </table>';
content[index++] = '            <!-- END NAV TABLE -->';
content[index++] = '          </td>';
content[index++] = '            <td width="602" align="center" bgcolor="#FFFFFF"><img src="' + imgdir + 'clearpix.gif" width="1" height="20"> ';
content[index++] = '              ';
content[index++] = '            <table width="540" border="0" cellspacing="0" cellpadding="0" height="350">';
content[index++] = '              <tr valign="top">';
content[index++] = '                <td class="ficontent">' + inc.headergraphic + '<br>';
content[index++] = inc.contentgraphic;
return (content.join(""));
}

/*_______________________________________________________________________________________
||||||||||||||||||||||||||||||||||||||NEW FUNCTION|||||||||||||||||||||||||||||||||
_______________________________________________________________________________________*/

function makeTopNav()
{
var content = new Array();
var index = 0;
//CODE GOES HERE
content[index++] = '		  <a href="' + sitedir + 'privacy.html"><img src="' + imgdir + 'nav-privacy.gif" width="80" height="31" align="middle" border="0" alt="Site Map"></a><img src="' + imgdir + 'subnav-divider.gif" width="18" height="31" align="middle"><a href="' + sitedir + 'sitemap.html"><img src="' + imgdir + 'nav-sitemap.gif" width="48" height="31" align="middle" border="0" alt="Site Map"></a><img src="' + imgdir + 'subnav-divider.gif" width="18" height="31" align="middle"><a href="' + sitedir + 'online_contactus.html"><img src="' + imgdir + 'nav-contact.gif" width="61" height="31" align="absmiddle" border="0" alt="Contact Us"></a><img src="' + imgdir + 'subnav-divider.gif" width="18" height="31" align="middle">';
//CODE GOES HERE
return (content.join(""));
}

/*_______________________________________________________________________________________
||||||||||||||||||||||||||||||||||||||NEW FUNCTION|||||||||||||||||||||||||||||||||
_______________________________________________________________________________________*/

function makeDateStamp()
{

var myDate = new Date();
var day = myDate.getDay();
var month = myDate.getMonth();
var date = myDate.getDate();
var year = "";

if (document.all)
	{
	year = myDate.getYear();
	}
else
	{
	year =myDate.getYear() + 1900;
	}	

var months = new Array ("January", "February","March", "April", "May", "June", "July", "August", "September", "October", "November", "December");

var days = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");


//alert (days[day] + ", " + months[month] + " " + date + ",  " + year);
var finalDate = (months[month] + " " + date + ",  " + year);


var content = new Array();
var index = 0;
content[index++] = '<td background="' + imgdir + 'clearpix.gif"><span class="date">' + days[day] + '</span><span class="date">, ' + finalDate + '</span><img src="' + imgdir + 'clearpix.gif" width="15" height="1"><br><img src="' + imgdir + 'clearpix.gif" width="1" height="2"></td>';

return (content.join(""));
}


/*_______________________________________________________________________________________
||||||||||||||||||||||||||||||||||||||NEW FUNCTION|||||||||||||||||||||||||||||||||
_______________________________________________________________________________________*/


function makeLoginArea()
{
var content = new Array();
var index = 0;
//CODE GOES HERE
content[index++] = '            <table width="254" border="0" cellspacing="0" cellpadding="0">';
content[index++] = '              <tr background="' + imgdir + 'clearpix.gif"> ';
content[index++] = '                <td width="1"><img src="' + imgdir + 'clearpix.gif" width="1" height="86"></td>';
content[index++] = '                <td width="253" background="' + imgdir + 'back-login-bg.gif" align="center" class="ficontentsmall">';
content[index++] = '				<img src="' + imgdir + 'back-login-title.gif" width="177" height="17" alt="Internet Account Access"><br>';
content[index++] = '                  <a href="' + homedir + 'home.html"><img src="' + imgdir + 'back-login-login.gif" width="52" height="18" border="0" alt="Login" align="absmiddle"></a> ';
content[index++] = '                  &nbsp;<a href="' + homedir + 'home.html?demo" class="whitelink">Demo</a> <span class="whitelink">|</span> <a href="' + sitedir + 'online.html#online" class="whitelink">Info</a> <span class="whitelink">|</span> <a href="javascript:registerPopup(\'' + sitedir + 'register.html\');" class="whitelink">Register</a> &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="https://www.doifcuhb.org/onlineserv/HB/ForgottenPW.html" class="whitelink">Lost&nbsp;Password</a></td>';
content[index++] = '              </tr>';
content[index++] = '            </table>';
//CODE GOES HERE
return (content.join(""));
}

/*_______________________________________________________________________________________
||||||||||||||||||||||||||||||||||||||NEW FUNCTION|||||||||||||||||||||||||||||||||
_______________________________________________________________________________________*/

function makeMainNav()
{
var content = new Array();
var index = 0;
//CODE GOES HERE
content[index++] = '              <tr> ';
content[index++] = '                <td><a href="' + sitedir + 'join.html" onMouseOver="img_act(\'joining\'); popUp(\'HM_Menu1\',event); window.status=\'Joining DOIFCU\'; return true" onMouseOut="img_inact(\'joining\'); popDown(\'HM_Menu1\');"><img src="' + imgdir + 'nav-joining-off.gif" width="142" height="20" name="joining" border="0" alt="Joining DOIFCU"></a></td>';
content[index++] = '              </tr>';
content[index++] = '              <tr> ';
content[index++] = '                <td><a href="' + sitedir + 'join_volunteers.html" onMouseOver="img_act(\'volunteers\'); popUp(\'HM_Menu7\',event); window.status=\'Volunteers\'; return true" onMouseOut="img_inact(\'volunteers\'); popDown(\'HM_Menu7\');"><img src="' + imgdir + 'nav-volunteers-off.gif" width="142" height="20" name="volunteers" border="0" alt="Volunteers"></a></td>';
content[index++] = '              </tr>';
content[index++] = '              <tr> ';
content[index++] = '                <td><a href="' + sitedir + 'savings.html" onMouseOver="img_act(\'savings\'); popUp(\'HM_Menu2\',event); window.status=\'Savings Products\'; return true" onMouseOut="img_inact(\'savings\'); popDown(\'HM_Menu2\');"><img src="' + imgdir + 'nav-savings-off.gif" width="142" height="20" name="savings" border="0" alt="Savings Products"></a></td>';
content[index++] = '              </tr>';
content[index++] = '              <tr> ';
content[index++] = '                <td><a href="' + sitedir + 'investments.html" onMouseOver="img_act(\'investments\'); popUp(\'HM_Menu2\',event); window.status=\'Investments\'; return true" onMouseOut="img_inact(\'investments\'); popDown(\'HM_Menu2\');"><img src="' + imgdir + 'nav-investments-off.gif" width="142" height="20" name="investments" border="0" alt="Investments"></a></td>';
content[index++] = '              </tr>';
content[index++] = '              <tr> ';
content[index++] = '                <td><a href="' + sitedir + 'checking.html" onMouseOver="img_act(\'checking\'); popUp(\'HM_Menu3\',event); window.status=\'Checking Products\'; return true" onMouseOut="img_inact(\'checking\'); popDown(\'HM_Menu3\');"><img src="' + imgdir + 'nav-checking-off.gif" width="142" height="20" name="checking" border="0" alt="Checking Products"></a></td>';
content[index++] = '              </tr>';
content[index++] = '              <tr> ';
content[index++] = '                <td><a href="' + sitedir + 'loans.html" onMouseOver="img_act(\'loan\'); popUp(\'HM_Menu4\',event); window.status=\'Loan Products\'; return true" onMouseOut="img_inact(\'loan\'); popDown(\'HM_Menu4\');"><img src="' + imgdir + 'nav-loan-off.gif" width="142" height="20" name="loan" border="0" alt="Loan Products"></a></td>';
content[index++] = '              </tr>';
content[index++] = '              <tr> ';
content[index++] = '                <td><a href="' + sitedir + 'insurance.html" onMouseOver="img_act(\'insurance\'); popUp(\'HM_Menu7\',event); window.status=\'Insurance Products\'; return true" onMouseOut="img_inact(\'insurance\'); popDown(\'HM_Menu7\');"><img src="' + imgdir + 'nav-insurance-off.gif" width="142" height="20" name="insurance" border="0" alt="Insurance Products"></a></td>';
content[index++] = '              </tr>';
content[index++] = '              <tr> ';
content[index++] = '                <td><a href="' + sitedir + 'online.html" onMouseOver="img_act(\'online\'); popUp(\'HM_Menu5\',event); window.status=\'Online Services\'; return true" onMouseOut="img_inact(\'online\'); popDown(\'HM_Menu5\');"><img src="' + imgdir + 'nav-online-off.gif" width="142" height="20" name="online" border="0" alt="Online Services"></a></td>';
content[index++] = '              </tr>';
content[index++] = '              <tr> ';
content[index++] = '                <td><a href="' + sitedir + 'other.html" onMouseOver="img_act(\'other\'); popUp(\'HM_Menu6\',event); window.status=\'Other Services\'; return true" onMouseOut="img_inact(\'other\'); popDown(\'HM_Menu6\');"><img src="' + imgdir + 'nav-other-off.gif" width="142" height="20" name="other" border="0" alt="Other Services"></a></td>';
content[index++] = '              </tr>';
content[index++] = '              <tr> ';
content[index++] = '                <td><a href="' + sitedir + 'forms.html" onMouseOver="img_act(\'forms\'); window.status=\'Forms &amp; Applications\'; return true" onMouseOut="img_inact(\'forms\');"><img src="' + imgdir + 'nav-forms-off.gif" width="142" height="20" name="forms" border="0" alt="Forms &amp; Applications"></a></td>';
content[index++] = '              </tr>';
//CODE GOES HERE
return (content.join(""));
}

/*_______________________________________________________________________________________
||||||||||||||||||||||||||||||||||||||NEW FUNCTION|||||||||||||||||||||||||||||||||
_______________________________________________________________________________________*/

function makeQuickLinks()
{
var content = new Array();
var index = 0;
//CODE GOES HERE
content[index++] = '                <td width="187" bgcolor="#F9914A" valign="top" class="ficontentsmall" background="' + imgdir + 'clearpix.gif"><img src="' + imgdir + 'back-quicklinks-title.gif" width="156" height="25" alt="Quick Links"> ';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="https://www.loanliner.com/LoanRequest/CLPPresenter/LoanList.aspx?CUID=00800271&LoanListId=665&ChannelId=4287292306019170451&LocationId=3627749000168185736&IsFramed=F" class="quick" target="_blank">Loan Application</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'whats_new.html" class="quick">Whats New</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="http://doifcuhb.locatorsearch.com/index.aspx" class="quick">Find an ATM</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'quick_branch.html" class="quick">Find a Shared Branch</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'quick_rates.html" class="quick">Rates/Fees/Policies</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'quick_newsletter.html" class="quick">Newsletter</a> <br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'quick_sites.html" class="quick">Recommended Sites</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="javascript:showKidsPage(\'' + sitedir + 'quick_kids.html\');" class="quick">Kids’ Corner</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'calculators.html" class="quick">Calculators</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'privacy.html" class="quick">Privacy Policy</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'faqs.html" class="quick">FAQs</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'quick_hours.html" class="quick">Hours and Locations</a><br>';
content[index++] = '                  <img src="' + imgdir + 'clearpix.gif" width="1" height="8"> </td>';
//CODE GOES HERE
return (content.join(""));
}

/*_______________________________________________________________________________________
||||||||||||||||||||||||||||||||||||||NEW FUNCTION|||||||||||||||||||||||||||||||||
_______________________________________________________________________________________*/

function makeHomeQuickLinks()
{
var content = new Array();
var index = 0;
//CODE GOES HERE
content[index++] = '                <td width="187" bgcolor="#F9914A" valign="top" class="ficontentsmall" background="' + imgdir + 'clearpix.gif"><img src="' + imgdir + 'home-quicklinks-title.gif" width="187" height="25" alt="Quick Links"> ';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="https://www.loanliner.com/LoanRequest/CLPPresenter/LoanList.aspx?CUID=00800271&LoanListId=665&ChannelId=4287292306019170451&LocationId=3627749000168185736&IsFramed=F" class="quick" target="_blank">Loan Application</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'whats_new.html" class="quick">Whats New</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="http://doifcuhb.locatorsearch.com/index.aspx" class="quick">Find an ATM</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'quick_branch.html" class="quick">Find a Shared Branch</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'quick_rates.html" class="quick">Rates/Fees/Policies</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'quick_newsletter.html" class="quick">Newsletter</a> <br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'quick_sites.html" class="quick">Recommended Sites</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="javascript:showKidsPage(\'' + sitedir + 'quick_kids.html\');" class="quick">Kids’ Corner</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'calculators.html" class="quick">Calculators</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'privacy.html" class="quick">Privacy Policy</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'faqs.html" class="quick">FAQs</a><br>';
content[index++] = '                  <img src="' + imgdir + 'home-quicklinks-bullet.gif" width="28" height="10"> ';
content[index++] = '                  <a href="' + sitedir + 'quick_hours.html" class="quick">Hours and Locations</a><br>';
content[index++] = '                  <img src="' + imgdir + 'clearpix.gif" width="1" height="8"> </td>';
//CODE GOES HERE
return (content.join(""));
}

/*_______________________________________________________________________________________
||||||||||||||||||||||||||||||||||||||NEW FUNCTION|||||||||||||||||||||||||||||||||
_______________________________________________________________________________________*/

function setHeaderGraphic(graphic , alt_tag)
{
if (!alt_tag)
var alt_tag = "";

if (graphic == null)
	{
	this.headergraphic = "";
	}
else
	{
	this.headergraphic = '<img src="' + imgdir + 'hed-' + graphic + '.gif" width="536" height="44" alt="' + alt_tag + '" border="0">';
	}	
}

/*_______________________________________________________________________________________
||||||||||||||||||||||||||||||||||||||NEW FUNCTION|||||||||||||||||||||||||||||||||
_______________________________________________________________________________________*/

function setContentGraphic(graphic , alt_tag)
{
if (!alt_tag)
var alt_tag = "";

if (graphic == "empty")
	{
	this.contentgraphic = "";
	}
else
	{
	this.contentgraphic = '<img src="' + imgdir + 'pic-' + graphic + '.jpg" width="164" height="124" alt="' + alt_tag + '" border="0" align="right" hspace="10">';
	}	
}

// created for 200-89576 since the starburst graphic is .gif and not .jpg
function setContentGraphicGIF(graphic , alt_tag)
{
if (!alt_tag)
var alt_tag = "";

if (graphic == "empty")
	{
	this.contentgraphic = "";
	}
else
	{
	this.contentgraphic = '<img src="' + imgdir + 'pic-' + graphic + '.gif" width="164" height="124" alt="' + alt_tag + '" border="0" align="right" hspace="10">';
	}	
}

/*_______________________________________________________________________________________
||||||||||||||||||||||||||||||||||||||NEW FUNCTION|||||||||||||||||||||||||||||||||
_______________________________________________________________________________________*/

function makeFooter(){
var content = new Array();
var index = 0;
content[index++] = '</td> </tr>';
content[index++] = '              </table>';
content[index++] = '              <img src="' + imgdir + 'clearpix.gif" width="1" height="30"><br>';
content[index++] = '              <img src="' + imgdir + 'brownpix.gif" width="550" height="1"><a href="javascript:openLink(\'http://www.hud.gov\');"><img src="' + imgdir + 'footer-ehl.gif" width="145" height="25" hspace="15" vspace="15" border="0" alt="Equal Housing Lender"></a><a href="javascript:openLink(\'http://www.digitalinsight.com\');"><!--[if lt IE 7]><script type="text/javascript" src="https://www.doifcuhb.org/mstinc/web/js/png.js"></script><![endif]--><img src="https://www.doifcuhb.org/mstinc/web/images/di_91x22_3c.png" width="91" height="22" vspace="15" border="0" alt="Digital Insight, an Intuit Company"></a><!--<a href="' + sitedir + 'privacy.html"><img src="' + imgdir + 'footer-privacy.gif" width="80" height="25" hspace="15" vspace="15" border="0" alt="Privacy Policy"></a>--><br><a href="javascript:openLink(\'http://www.ncua.gov\');"><!--[if lt IE 7]><script type="text/javascript" src="/mstinc/web/js/png.js"></script><![endif]--><img src="https://www.doifcuhb.org/mstinc/web/images/ncua_351x32_k_100.png" width="351" height="32" border="0" alt="NCUA" /></a><br>';
content[index++] = '            <img src="' + imgdir + 'brownpix.gif" width="603" height="15"></td>';
content[index++] = '        </tr>';
content[index++] = '      </table>';
content[index++] = '    </td>';
content[index++] = '  </tr>';
content[index++] = '</table>';
return (content.join(""));

}

function makeFooterPreview(){
var content = new Array();
var index = 0;
content[index++] = '</td> </tr>';
content[index++] = '              </table>';
content[index++] = '              <img src="' + imgdir + 'clearpix.gif" width="1" height="30"><br>';
content[index++] = '              <img src="' + imgdir + 'brownpix.gif" width="550" height="1"><a href="javascript:openLink(\'http://www.ncua.gov\');"></a><img src="'+ imgdir +'/logo_ncua.jpg" width="170" height="63" alt="" border="0"><a href="javascript:openLink(\'http://www.hud.gov\');"><img src="' + imgdir + 'footer-ehl.gif" width="145" height="25" hspace="15" vspace="15" border="0" alt="Equal Housing Lender"></a><a href="javascript:openLink(\'http://www.digitalinsight.com\');"><img src="' + imgdir + 'DIWebLogo-Color-91pix.gif" width="91" height="22" vspace="15" border="0" alt="Digital Insight : Beyond Internet Banking"></a><a href="https://digitalid.verisign.com/as2/bb5049371d73881faa2b8679771b0517"><img src="'+imgdir+'verisign_seal.gif" width="59" height="63" alt="" hspace="15" border="0"></a><!--<a href="' + sitedir + 'privacy.html"><img src="' + imgdir + 'footer-privacy.gif" width="80" height="25" hspace="15" vspace="15" border="0" alt="Privacy Policy"></a>--><br>';
content[index++] = '            <img src="' + imgdir + 'brownpix.gif" width="603" height="15"></td>';
content[index++] = '        </tr>';
content[index++] = '      </table>';
content[index++] = '    </td>';
content[index++] = '  </tr>';
content[index++] = '</table>';
return (content.join(""));

}
