var estrellaFooter = new EstrellaFooter();
estrellaFooter.addLink( "Academics", EstrellaServerName + "/academics/" );
estrellaFooter.addLink( "Class Schedule", EstrellaServerName + "/sch/" );
estrellaFooter.addLink( "Contact Us", EstrellaServerName + "/comments/" );

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( "</td>" );
document.writeln( "</tr>" );
document.writeln( "</table>" );
document.writeln( "<table border='0' width='800' cellpadding='0' height='30' bgcolor='#C0C0C0'>" );
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='2' color='#333333'>" );
document.writeln( "3000 North Dysart Road - Avondale, AZ 85323 - 623-935-8000" );
document.writeln( "</font></td></tr>" );
document.writeln( "</table>" );
document.close();


