// JavaScript Document

function pmenu(sSec, iLevel) {
	
	var sLevel, i;
	
	sLevel = "";
	for (i=0; i < iLevel; i++) {
		sLevel += '../';	
	}
	
	document.write ('<p style="margin-top: 2em"><b>Men&uacute; principal:</b></p>');
	
	document.write ('<div style="margin-left: .6em;">');
	
	document.write ('<p><a href ="'  + sLevel + 'index.html">Inicio</a></p>');
	
	document.write ('<p><a href ="'  + sLevel + 'noticias/index.php">Noticias</a></p>');
	
	if (sSec != 'cmpr')
		document.write ('<p><a href ="'  + sLevel + 'cmpr/index.html">Sobre el Conservatorio</a></p>');
		
	if (sSec != 'adm')
		document.write ('<p><a href ="'  + sLevel + 'admisiones/index.html">Admisiones y ayuda econ&oacute;mica</a></p>');

	if (sSec != 'act')
		document.write ('<p><a href ="'  + sLevel + 'actividades/index.php">Conciertos y actividades</a></p>');

	if (sSec !=  'eu')
	    document.write ('<p><a href ="'  + sLevel + 'programas/index.html">Grados y programas</a></p>');
	
	if (sSec != 'ep')
	    document.write ('<p><a href ="'  + sLevel + 'ep/index.html">Escuela Preparatoria</a></p>');
				
	if (sSec != 'av')
	    document.write ('<p><a href ="'  + sLevel + 'biblioteca/index.html">Biblioteca Amaury Veray</a></p>');
		
	document.write ('<p><img src="' + sLevel + '/images/cmpr/segno.gif" width="12" height="13" alt="segno"></p>');
				
	document.write ('<p><a href ="'  + sLevel + 'estudiantes/index.html">Estudiantes activos</a> <a href="http://cmpr.crhosts.com/login/index.php"><img src="' + sLevel + 'images/logos/moodle.gif" border=0 alt="Moodle" width="17" height="14"></a></p>');
	document.write ('<p><a href ="'  + sLevel + 'estudiantes/exal.php">Exalumnos</a></p>');

    document.write ('<p><a href ="http://www.cemcapr.com">Centro Empresarial<br>(CEMCA)</a></p>');

	if (sSec != 'dm')
	    document.write ('<p><a href ="'  + sLevel + 'despertarmusical/index.htm">Despertar Musical</a></p>');

	if (sSec != 'sala')
	    document.write ('<p><a href ="'  + sLevel + 'sala/sala.php">Sala de M&uacute;sica</a></p>');

	document.write ('<p><a href ="'  + sLevel + 'mapa.html">Mapa / B&uacute;squeda</a></p>');
	
	document.write ('</div>');

}
