function Menu(Section, SubSection) {
var SectionBg = 'bgcolor=#FF9000';



//start of document
document.writeln('<div id="button"><ul>');
document.writeln('<center><img src=img/line_menu.gif width=136 height=1></center>');

// Portada

if (Section == 'portada') { 
	//selected
	document.writeln('<li><a href="index.html" id=selected>&nbsp;&nbsp;Home Page</a></li>');
} else {
	//regular
	document.writeln('<li><a href="index.html" id=regular>&nbsp;&nbsp;Home Page</a></li>'); 
}


// About

if (Section == 'about') {
	document.writeln('<li><a href="about.html" id=selected>&nbsp;&nbsp;Our Mission</a></li>');

    document.writeln('<li><a href="about_concept.html" id=sub>&nbsp;&nbsp;&nbsp;Concept</a></li>');
	document.writeln('<li><a href="about_local.html" id=sub>&nbsp;&nbsp;&nbsp;Local Organizations</a></li>');
	
	} else {
	document.writeln('<li><a href="about.html" id=regular>&nbsp;&nbsp;Our Mission</a></li>');
	}



// Enroll

if (Section == 'enroll') { 
	//selected
	document.writeln('<li><a href="enroll.html" id=selected>&nbsp;&nbsp;Register</a></li>');
} else {
	//regular
	document.writeln('<li><a href="enroll.html" id=regular>&nbsp;&nbsp;Register</a></li>'); 
}



// Donacion

if (Section == 'donacion') { 
	//selected
	document.writeln('<li><a href="donacion.html" id=selected>&nbsp;&nbsp;Donation</a></li>');
} else {
	//regular
	document.writeln('<li><a href="donacion.html" id=regular>&nbsp;&nbsp;Donation</a></li>'); 
}


// Noticas

if (Section == 'noticias') { 
	//selected
	document.writeln('<li><a href="noticias.html" id=selected>&nbsp;&nbsp;Latest News</a></li>');
} else {
	//regular
	document.writeln('<li><a href="noticias.html" id=regular>&nbsp;&nbsp;Latest News</a></li>'); 
}



// Documents

if (Section == 'documents') { 
	//selected
	document.writeln('<li><a href="about_planning.html" id=selected>&nbsp;&nbsp;Planning Committee</a></li>');
} else {
	//regular
	document.writeln('<li><a href="about_planning.html" id=regular>&nbsp;&nbsp;Planning Committee</a></li>'); 
}


// Estadisticas

if (Section == 'estadisticas') { 
	//selected
	document.writeln('<li><a href="estadisticas.html" id=selected>&nbsp;&nbsp;&nbsp;Important Facts</a></li>');
} else {
	//regular
	document.writeln('<li><a href="estadisticas.html" id=regular>&nbsp;&nbsp;Important Facts</a></li>'); 
}


// Calendario

if (Section == 'calendario') { 
	//selected
	document.writeln('<li><a href="calendario.html" id=selected>&nbsp;&nbsp;Calendar</a></li>');
} else {
	//regular
	document.writeln('<li><a href="calendario.html" id=regular>&nbsp;&nbsp;Calendar</a></li>'); 
}


// Comentarios

if (Section == 'comentarios') { 
	//selected
	document.writeln('<li><a href="comentarios.html" id=selected>&nbsp;&nbsp;Comments</a></li>');
} else {
	//regular
	document.writeln('<li><a href="comentarios.html" id=regular>&nbsp;&nbsp;Comments</a></li>'); 
}


// Contact

if (Section == 'contact') { 
	//selected
	document.writeln('<li><a href="contact.html" id=selected>&nbsp;&nbsp;Contact Us</a></li>');
} else {
	//regular
	document.writeln('<li><a href="contact.html" id=regular>&nbsp;&nbsp;Contact Us</a></li>'); 
}


// Personalidades

if (Section == 'personalidades') { 
	//selected
	document.writeln('<li><a href="personalidades.html" id=selected>&nbsp;&nbsp;Celebrities</a></li>');
} else {
	//regular
	document.writeln('<li><a href="personalidades.html" id=regular>&nbsp;&nbsp;Celebrities</a></li>'); 
}


// Agencias

if (Section == 'agencias') { 
	//selected
	document.writeln('<li><a href="agencias.html" id=selected>&nbsp;&nbsp;Participating<br />&nbsp;&nbsp;Agencies</a></li>');
} else {
	//regular
	document.writeln('<li><a href="agencias.html" id=regular>&nbsp;&nbsp;Participating<br />&nbsp;&nbsp;Agencies</a></li>'); 
}


// Sponsors

if (Section == 'sponsors') { 
	//selected
	document.writeln('<li id=fim><a href="sponsors.html" id=selected>&nbsp;&nbsp;Sponsors</a></li>');
} else {
	//regular
	document.writeln('<li id=fim><a href="sponsors.html" id=regular>&nbsp;&nbsp;Sponsors</a></li>'); 
}


//end of document
document.writeln('</ul><center><img src=img/line_menu.gif width=136 height=1></center></div>');
}