var estrellaFooter = new EstrellaFooter();
estrellaFooter.addLink( "Purchase Online", href="https://secure.entango.com/donate/M8fHqTYKaiF" );
estrellaFooter.addLink( "Privacy Policy", href="policy.htm" );
estrellaFooter.addLink( "Contact Us", href="mailto:customerservice@driveforsuccess.org" );

var itemsPerRow = 4;
function writeLinks( ){
	for( var x = 0; x < estrellaFooter.getLinkCount(); x++ ){
		document.writeln( estrellaFooter.getHtmlLink( x + 1 ) );
		if( x == itemsPerRow ){
			document.writeln( "<BR>" );
		}else{
			if( ( x + 1 ) != estrellaFooter.getLinkCount() ){ 
			document.writeln( " |" );
			}
		}
	}
}

document.writeln( "" );
document.writeln( "" );
document.writeln( "" );
document.writeln( "<table border='0' width='790' cellpadding='0' height='20' BACKGROUND='http://www.driveforsuccess.org/images/05/top_header_bottom2.jpg'>" );
document.writeln( "<tr><td height='15'><p align='center'><b><font face='Arial' size='2'>" );
writeLinks();
document.writeln( "</font></b></td></tr>" );
document.writeln( "<tr><td height='15'><p align='center'><font face='Arial' size='1' color='#333333'><br>" );
document.writeln( "&copy; 2004 - Present / Estrella Rotary Foundation, Inc., All Rights Reserved" );
document.writeln( "</font></td></tr>" );
document.writeln( "</table>" );
document.close();


